Using the 'mutableListOf()' method, we can create a mutable list(i.e. The List values can be changed/replaced).
fun main() { var x = mutableListOf(5, "John", "Kotlin") println(x) }