So I have an array as the value of one of my keys in a dictionary and I want to get it to set it as the text of a UITableViewCell. How do I get it? I've been coding in Objective-C and I'm starting to learn Swift.
var content: [String: Any] = ["content": ["North America", "Europe West", "Europe Nordic & East", "Oceania", "Russia", "Turkey", "Brazil", "Latin America North", "Latin America South"], "footer": "Select the League of Legends region for this app to use."]
autoreleasepool { () -> () in
var temp = self.content["content"]
cell.textLabel?.text = temp[indexPath.row] as String
}
This returns me 2 errors '_??' is not convertible to 'int' and '<<error type>>?' is not convertible to 'int'

self.content["content"]?var content: [String: Any] = ["content": ["North America", "Europe West", "Europe Nordic & East", "Oceania", "Russia", "Turkey", "Brazil", "Latin America North", "Latin America South"], "footer": "Select the League of Legends region for this app to use."]