using System;
public class Program
{
public static void Main()
Random rnd = new Random();
int[] array = new int[12];
for(int i = 0; i<array.Length; i++){
array[i] = rnd.Next(100);
Console.WriteLine(array[i]);
}