public static T RemoveRandom <T>(this IList <T> list) => Rnd.Draw(list);
public int Compare(object x, object y) => Rnd.Integer();
public static T ElementAtRandom <T>(this ICollection <T> coll) => Rnd.Item(coll);