What will the following program print out:
val numbers = mutableListOf(1, 2, 3).toList()
numbers.add(4)
numbers.remove(4)
numbers.add(5)
println(numbers)What will the following program print out:
val numbers = mutableListOf(1, 2, 3).toList()
numbers.add(4)
numbers.remove(4)
numbers.add(5)
println(numbers)Create a free account to access the full topic