from random import randint first_names = [ "Arwen", "Elrond", "Galadriel", "Legolas", "Thranduil", "Eowyn", "Boromir", "Faramir", "Gandalf", "Celeborn", ] last_names = [ "Stormrider", "Shadowhunter", "Moonwhisper", "Nightshade", "Dragonbane", "Ironfist", "Brightblade", "Windwalker", "Starfire", "the Bard", ] def random_name(): # Add your code here pass def random_party(party_size): # Add your code here pass # Example Usage print(f"{random_name()} entered the tavern where they met {random_name()} the tavern keep") print(f"{random_party(3)} approached the evil {random_name()}")