What is the output of this code?
num_list = [1,2,3,4,5] num_list.remove(2) print(num_list)
[1,2,3]
[3,4,5]
[1,3,4,5]
[1,2,4,5]