java
// Get values using a for-each loop
for (Integer value : myMap.values()) {
    System.out.println("Value: " + value);
}