using System.Collections.Generic;
public static void Main()
List<string> animals = new List<string>
"chicken", "cow", "dog", "donkey", "duck", "goat", "goose", "horse", "pig", "sheep", "turkey", "fish", "rat", "monkey"
List<string> bodyparts = new List<string>
"face", "ass", "brain", "cunt"
List<string> obscene = new List<string>
List<string> character = new List<string>
"arrogant", "obnoxious", "surly", "sarcastic", "ignorant", "guilible", "confused", "immature", "insipid", "stubborn", "spiteful", "insensitive", "prejudiced", "spoilt"
List<string> imperatives = new List<string>
"go eat", "go drink", "go lick", "go suck"
StringBuilder str = new StringBuilder();
str.Append((string)imperatives[rnd.Next(imperatives.Count)] + " " + (string)obscene[rnd.Next(obscene.Count)] + " ");
str.Append("you " + (string)character[rnd.Next(character.Count)] + " ");
str.Append(String.Format("{0}{1}", (string)animals[rnd.Next(animals.Count)], (string)bodyparts[rnd.Next(bodyparts.Count)]));
str.Append(String.Format("{0}{1}", (string)bodyparts[rnd.Next(bodyparts.Count)], (string)obscene[rnd.Next(obscene.Count)]));
str.Append(String.Format("{0}{1}", (string)obscene[rnd.Next(obscene.Count)], (string)animals[rnd.Next(animals.Count)]));
System.Console.WriteLine("Module is broken.");
string line = str.ToString().Trim().ToUpper();
Console.WriteLine(line[0] + line.Substring(1, line.Length - 1).ToLower() + "!");
private static List<string> ReadWords(string file)
return File.ReadAllText(file).Trim().Split(new char[]
Console.WriteLine("Could not read file: " + e.Message);