Write a program that defines a function (shuffle) to scramble a list into a random order, like shuffling a deck of cards in python

Code

import random

def suffle(list):
random.shuffle(list)
return list

list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
print(suffle(list))

Output

[6, 5, 9, 3, 8, 4, 7, 1, 2]