using System; class Program { public static void Main() { Random random = new Random(); byte[] tomb = new byte[10]; random.NextBytes(tomb); for(int i=0; i<10; i++) Console.Write(tomb[i] + " "); } }