using System;
public class Program
{
public static void Main()
//set up the counter
int i;
string[] strNames = new string[3]{"Susan", "Brian", "Mike"};
//set up the condition
for (i = 0; i < strNames.Length; i++)
Console.WriteLine((i + 1).ToString() + ". " + strNames[i] + Environment.NewLine);
}
/*
i = 0;
while (i < strNames.Length)
i++;
}*/