using System; public class Test { public static void Main() { String[] strings = { "the", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog", "in", "the", "barn" }; Console.WriteLine(strings[0]); } }