Given the following code, what would the output on the final line be?

# implementing Queue using List:
q=[]
q.append(10)
q.append(100)
q.append(1000)
q.append(10000)
print("Initial Queue is:",q)
print(q.pop(0))
print(q.pop(0))
print(q.pop(0))
print("After Removing elements:",q)

(1 point)
Responses

[10000]
[10000]

[10]
[10]

[10,100,1000,10000]
[10,100,1000,10000]

[]

[10000]