using System;
public class Program
{
public static void Main()
{
char[] array = new char[10];
string charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
Random rnd = new Random();
for (int index = 0; index < 10; index++) {
array[index] = charset[rnd.Next(charset.Length)];
}
foreach (var ch in array) {
Console.Write(ch + " ");
}
}
}
/*
run:
v R s I e m u J T r
*/