In Java, I understand if two keys maps to one value , linear chaining occurs due to collision.
For Example:
 Map myMap= new HashMap(); //Lets says both of them get mapped to same bucket-A and
myMap.put(“John”, “Sydney”);//linear chaining has occured.
myMap.put("Mary","Mumbai"); //{key1=John}--->[val1=Sydney]--->[val2=Mumbai]
So when I do: myMap.get("John"); // or myMap.get("Mary")
What does the JVM return since bucket-A contains two values? Does it return the ref to "chain"? Does it return "Sydney"? Or does it return "Mumbai"?
Thanks,
