using System;
public class Program
{
public static void Main()
int [] numbers = {0, 1, 2, 3};
int lengthOfNmbers = numbers.Length;
//initialize an array that all elements are 0
for ( int i = 0; i < numbers.Length; i++)
numbers[i] = 0;
}