// set a list in C#. var myList = new List<int>{ 1, 2, 3, 4 }; // get the count of the elements and display randomly. int index = random.Next(myList.Count); Console.WriteLine(myList[index]);