What does this code print?
let names = ["Bear", "Tony", "Svante"] print(names[1] + "Bear")
1Bear
Nothing, this code is invalid References:
BearBear
TonyBear