I was wondering that in the following case:
var array = ["1":["First whatever","Second whatever"],"2":["Third whatever", "Forth whatever"]]
a) How do I access "Second whatever" in other words how do I return "Second whatever"
b) How do I access "2"
If these are even possible.
Edit1: The code wasn't correct. Here is the correct one:
var arrays: [[String:[String]]] = [["1":["First whatever","Second whatever"]],["2":["Third whatever", "Forth whatever"]]]
And to get "Second whatever" I tried this:
arrays[0][1]