import random
def shuffle(L):
random.shuffle(A)
random.shuffle(B)
say my L is ["1", "2", "3", "4", "5", "6"]
I split the list into [1, 2, 3] and [4, 5, 6]
how do I combine the two lists, in a random order, but making sure the first number in the new list is either the first number from A or B
But making sure that each time I run the function, a new list is generated that still has either "1" or "4" as the first element