val words = arrayOf("hello", "world", "kotlin") // 打乱数组元素的顺序 words.shuffle(kotlin.random.Random(10)) // 打乱后的数组: ... (随机结果) words.forEach { _console.log(it) }