Arrays and collections / Arrays

val numbers1 = arrayOf(12345)
val numbers2 = numbers1.copyOf()

numbers2.forEach { print("$it ") }