using System.Collections.Generic;
public static void Main()
var words = new string[] { "array", "containing", "some", "strings", "with", "varying", "lengths" };
var reverseAlphabeticalOrder = new char[] { 'z', 'y', 'x', 'w', 'v', 'u', 't', 's', 'r', 'q', 'p', 'o', 'n', 'm', 'l', 'k', 'j', 'i', 'h', 'g', 'f', 'e', 'd', 'c', 'b', 'a' };
var customOrder = new char[] { 'a', 'c', 's', 'o', 't', 'w', 'v', 'l', 'z', 'y', 'x', 'u', 'r', 'q', 'p', 'n', 'm', 'k', 'j', 'i', 'h', 'g', 'f', 'e', 'd', 'b' };
Console.WriteLine("Are Words in reverseAlphabeticalOrder?"));
Console.WriteLine("Are Words in customOrder?"));