Initialization of arrays in C#

//Array of integer
int[] primeNumbers = { 2, 3, 5, 7, 11, 13, 17, 19 };

//Array of string
var gameList = new[] { "soccer""hockey""basketball" };

//Array of Employee class (another way)
var employees = new[] {
    new Employee("Pavlov""Anton"),
    new Employee("Kirienko""Elena")
};

class Employee {
    public string FirstName { getset; }
    public string LastName { getset; }

    public Employee(string firstName, string lastName)
    {
        FirstName = firstName;
        LastName = lastName;
    }
}