Kotlin - Loops and Ranges
Find the problem in this Kotlin code:
val items = listOf("one", "two", "three")
for ((i, v) in items.withIndex()) {
if (i = 1) println(v)
}