Kotlin - Loops and Ranges
What is the issue with this Kotlin code snippet?
val letters = listOf("x", "y", "z")
for (i, letter in letters.withIndex()) {
println("$i: $letter")
}