def choices(self, ctx, qty : int, *choices): """Picks `{qty}` times from the choices provided, with replacement.""" await ctx.send(', '.join(random.choices(choices, k=qty)))