public void Shuffle() { Random rand = new Random(); ShuffledLetters = string.Join("", Letters.OrderBy(x => rand.Next())); }