// One string will be randomly picked and displayed
Random rnd = new Random();
string[] secOptions = {"string one", "string two", "string three"};
int randomNumber = rnd.Next(0, 3);
string secText = secOptions[randomNumber];
Console.WriteLine(secText);