Kotlin - Collections Fundamentals
What will be the output of this Kotlin code?
val list: List= listOf(1, 2, 3) // list.add(4) // Uncommenting this line println(list)
