random
Returns a random element from this array.
inline fun <T> Array<out T>.random(): T(source)
fun main() {
val colors = arrayOf("red", "green", "blue", "yellow")
val randomColor = colors.random()
println("Random color: $randomColor")
}