Swift - Collections
What is the output of the following Swift code?
let colors = ["red", "green", "blue"]
for (index, color) in colors.enumerated() {
print("\(index): \(color)")
}