public static void Main()
int[] iNumber = new int[] {3, 1, 5, 1, 6, 9};
Console.WriteLine("The 3rd element of the array is: " + iNumber[2]);
Console.WriteLine("The length of this array is: " + iNumber.Length);
Console.WriteLine("The upper bound of this array is: " + iNumber.GetUpperBound(0));
Console.WriteLine("The 3rd element of the array is: " + iNumber[2]);
Console.WriteLine("---------------------------------------");
string[] strMonth = new string[12];
Console.WriteLine("Please enter a number between 1 and 12.");
string strEnteredMonth = Console.ReadLine();
int iMonth = Convert.ToInt32(strEnteredMonth);
Console.WriteLine(strMonth[iMonth-1]);