Anonymous Type Initialized with Array of Integers

using System;
namespace AbundantCodeConsoleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            var numbers = new int[] { 1, 1, 2, 3, 4, 8, 33, 2 };
            Console.WriteLine(numbers[0]);
            Console.ReadLine();
        }
     
    }
}