Randomly selecting multiple items from a list returns a list containing the desired number of randomly selected items from the original list.
Solution for How to randomly select multiple items from a list in Python : You can use random.sample() to randomly select multiple items from a list Call random.sample(population, k) to return a list of k randomly selected items from a list population.