Im trying to find out the correct Map or List to use...
I need to add values to a list or map and retrieve then randomly..ie
Something like
Map<String, String>map
index 1 of map (or list) = "John", "John is from some country"
index 2 of map (or list) = "Mary", "Mary is from some country"
index 3 of map (or list) = "Paul", "Paul is from some country"
and then pass the values of the index to variable...
The result for index 1
String name = "John"
String from = "John is from some country"
Any ideas welcome...