What I came up with is:
RandomSort()
{
  string[] list = { "Alpha", "Beta", "Gamma", ... }
  Random rnd = new Random();
  string[] list2 = list.OrderBy((x) => rnd.NextDouble()).ToArray();
}
Is there some other way, maybe using a Dictionary or something? Thanks.
 
     
    