public static T GetRandomElementFrom <T>(this IEnumerable <T> list)
 {
     return(list.ElementAtOrDefault(_random.Next(list.Count())));
 }