How do I get the values of a Map
in the way they were declared?
If map's contents are-
Key "Apple" - Value "3"
Key "Banana" - Value "4"
Key "Orange" - Value "8"
I don't want to get-
Key "Banana" - Value "4"
Key "Apple" - Value "3"
Key "Orange" - Value "8"
How do I iterate and get the declared order?