using System;
public class Program
{
public static void Main()
var arry = new int[] {
1, 2, 3, 4, 5, 6
};
Index i = ^3;
Console.WriteLine(arry[i]);
}