val numbers = arrayOf(1, 2, 3, 4, 5) // 打印数组中的每个元素 numbers.forEach { _console.log(it) } // 输出: // 1 // 2 // 3 // 4 // 5