What will the output of the following code be where L = [2, 24, 39, 12, 9]?

Code

L = [2, 24, 39, 12, 9]

from random import shuffle
shuffle(L)

print(L)

Comments