how to pick a random element from an array in c# code example

Example 1: random value in array c#

Random random = new Random();
 int value = random.Next(0, array.Length);
 Console.Write(array[value]);

Example 2: c# pick a random item from array

string[] names = new string[] { "name1", "name2", "name3" };
Random rnd = new Random();
int index = rnd.Next(names.Length);
Console.WriteLine($"Name: {names[index]}");

Example 3: get any random item in array c#

Object[] obj = { "this", "that", "those" };
Random rn = new Random();
Object ob = rn.Next(0, obj.Length);