using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static Random _random = new Random();
public static char GetRandomLowercaseLetter()
{
int n = _random.Next(0, 26); // 0 - 25
char ch = (char)('a' + n);
return ch;
}
static void Main(string[] args)
{
for (int i = 0; i < 10; i++)
Console.Write(GetRandomLowercaseLetter() + " ");
}
}
}
/*
run:
z t l o z x u h f x
*/