iOS Swift - Swift Language Essentials
What will be the output of this Swift code?
var scores: [String: Int] = ["Alice": 90, "Bob": 85] scores["Bob"] = 95 print(scores["Bob"]!)
