using System.Collections.Generic;
public static void Main()
int[] oddNumbers = { 1, 3, 5 };
int firstOdd = oddNumbers[0];
int lastOdd = oddNumbers[2];
Console.WriteLine(lastOdd);
string[] names = new string[3];
Console.WriteLine(names[1]);
List<decimal> stockPrices = new List<decimal>();
decimal secondStockPrice = stockPrices[1];
Console.WriteLine(secondStockPrice);