public static void Main()
int[] piNumbers = { 3, 1, 5, 1, 6, 9 };
Console.WriteLine("The 3rd Element of this array is: " + piNumbers[2]);
Console.WriteLine("The lenagth of this array is: " + piNumbers.Length);
Console.WriteLine("The upper bound of this array is: " + piNumbers.GetUpperBound(0));
Console.WriteLine("The 3rd Element of this array is: " + piNumbers[2]);
string[] strMonths = new string[12];
Console.WriteLine("Enter a month number: ");
int userInput = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(strMonths[userInput - 1]);