indeks Foreach Kotlin
for ((index, value) in array.withIndex()) {
println("the element at $index is $value")
}
Coder Thirteen
for ((index, value) in array.withIndex()) {
println("the element at $index is $value")
}