using System; using System.Collections.Generic; using System.Linq; public class Test { public static void Main() { List listaNumeros = new List() { 95, 4, 9, 52, 40, 800, 90, 11, 2, 9, 4, 92, 8, 91, 120, 111 }; Random rand = new Random(DateTime.Now.Millisecond); int resultado = listaNumeros[rand.Next(listaNumeros.Count())]; System.Console.WriteLine(resultado); } }