{ static Random _rdm = new Random();
public static void Main()
private static void List10Things()
for (int i = 0; i < 10; i++)
private static void ListThingsThatIDo()
string stuffIDo = "I love ,I kiss ,I eat ,I clean ,I dream of ";
string[] stuff = stuffIDo.Split(',');
string thingsILove = "Mike much more than anything else,Steak,Sumpflochsaga,my bed,Ratzi,chocolate,my ass,your ass,the beachboy";
string[] lovedThings = thingsILove.Split(',');
Console.Write(stuff[_rdm.Next(0, stuff.Length)]);
Console.Write(lovedThings[_rdm.Next(0, lovedThings.Length)]);