using System;
using System.Linq;
public class Program
{
public static void Main()
//Creating the array
string[] family = {"Walter", "Ellis", "Teddy", "Rocco", "Stark", "Jett", "Peter", "Diane", "Trudy", "Sean", "Gina", "Darcy", "Laura"};
Array.Sort(family);
//store the length in a variable
int arrayLength = family.Length;
//go gthrough each name in the array and output it
foreach(string name in family){
Console.WriteLine(name);
}