Kotlin - Collections Fundamentals
Given this Kotlin code, what will be the output?
fun modifyList(list: MutableList) { list.add(5) } val numbers: List = listOf(1, 2, 3) // modifyList(numbers) // Uncommenting this line println(numbers)
