#This rnd.py import random def GetRandomItem(items: list): if len(items): return random.choice(items) return None