Kotlin - Collections Fundamentals
Find the problem in this Kotlin code snippet:
val pairs = listOf("a" to 1, "b" to 2)
for ((x, y, z) in pairs) {
println(x + y + z)
}