Масиви

val items = listOf("яблуко", "банан", "апельсин")

for (item in items) {

   println(item)

}