using System;
public class Program
{
public static void Main()
Random rnd = new Random();
var randIndex = rnd.Next(7);
Console.WriteLine(randIndex);
}