java
// Get keys using Map.keySet()
Set<String> keys = myMap.keySet();
for (String key : keys) {
    System.out.println("Key: " + key);
}