I have a HashMap to which I am adding integers from an array. The key is the integer and the value is the number of duplicates of the integer. When I iterate through the HashMap to get the keys in the HashMap they seem to be in random order. Is there any particular order in which these keys are added ? This is how I am iterating through.
Set<String> a = names.keySet();
Iterator i = a.iterator();
while(i.hasNext())
String t = (String) i.next();
