Which of these lines are ways to create an array?

string[] places;string[] names = { "Bob", "Mike", "Mary" };int[] numbers = new int[5];times = { 3.30, 2.30, 12.30 };

Awesome! We can declare without initializing, declare and initialize at the same time or declare with a capacity.

Whoops! We can declare without initializing, declare and initialize at the same time or declare with a capacity.