Try the following:
var t = wordDictionary ["myKey"][myArrIndex]
For example, this will give you the whole array:
var t = wordDictionary ["myKey"]
while this will give you the value in the array at position 5:
var t = wordDictionary ["myKey"][5]
source share