Here, we are importing the 'random' library and using the 'shuffle' and 'choice' functions.
random.shuffle(x) takes as parameter 'x' (a list). The function shuffles the list in place (meaning the variable itself is changed), so the function returns None.
random.choice(x) takes as parameter 'x' (a list). The function returns a random element from the list.