I want to shuffle some items in a list and display that while maintaining original list. Have no clue what to do (sorry I'm a beginner-ish)
import random
myList = ["apple", "banana", "cherry", "mango", "watermelon", "orange"]
newList = random.shuffle(myList)
print(myList)#want this to be original one
print(newList)#want this to be shuffled one
#but they both end up being shuffled