import random
languages = ['Python', 'JavaScript', 'Dart', 'Golang', 'Rust']
# get a random choice from a list
print(random.choice(my_list))
# get a random choice of two elements in a list
print(random.choices(my_list, k=2))
# shuffle a list randomly
random.shuffle(my_list)
print(my_list)