for ((index, value) in array.withIndex()) { println("the element at $index is $value")}
for (index in items.indices) { println("item at $index is ${items[index]}") }
for ((index, value) in array.withIndex()) { println("the element at $index is $value")}
for (index in items.indices) { println("item at $index is ${items[index]}") }