Swift - Collections
Given the Swift code:
What will happen when this code runs?
let temperatures = [72, 68, 75] temperatures[1] = 70 print(temperatures)
What will happen when this code runs?
