What output will this code produce?def whichlist():
11=[3,2,1,0]
12=11
11[0]=42
return 12
print(whichlist())
