I have a Hashmap in Java like this:
private Map team1 = new HashMap();
Then I fill it like th
Use functional operation for faster iteration.
team1.keySet().forEach((key) -> { System.out.println(key); });