public static void Main()
string[] friendNames = { "Todd Anthony", "Kevin Holton", "Shane Laigle" };
Console.WriteLine("Here are {0} of my friends:", friendNames.Length);
for (i = 0; i < friendNames.Length; i++)
Console.WriteLine(friendNames[i] + "and the index is:" +i);