Arrays - Create and Access
An array is a collection of variables of the same type.
int[] numbers = new int[5];
string[] shoppingList = new string[10];
Access (read / write) elements using an index, starting at 0.
Console.WriteLine(numbers[0]);
shoppingList[0] = "Milk";
Find array length using Length property.
Console.WriteLine(numbers.Length);