using System.Collections.Generic;
static void Public Main (string[] args){
var random = new Random ();
var choice = random.Next (5);
var nouns = new List<string> {
int nounsIndex = random.Next (nouns.Count);
Console.WriteLine (nouns[nounsIndex] + " " + nouns[nounsIndex]);
var nouns = new List<string> {
var adjectives = new List<string> {
int adjectivesIndex = random.Next (adjectives.Count);
int nounsIndex = random.Next (nouns.Count);
Console.WriteLine (adjectives[adjectivesIndex] + " " + nouns[nounsIndex]);
var adverb = new List<string> {
var verb = new List<string> {
int adverbIndex = random.Next (adverb.Count);
int verbIndex = random.Next (verb.Count);
Console.WriteLine (adverb[adverbIndex] + " " + verb[verbIndex]);
var pronouns = new List<string> {
var adjectives = new List<string> {
int adjectivesIndex = random.Next (adjectives.Count);
int pronounsIndex = random.Next (pronouns.Count);
Console.WriteLine (pronouns[pronounsIndex] + " " + adjectives[adjectivesIndex]);
var nouns = new List<string> {
int nounsIndex = random.Next (nouns.Count);
Console.WriteLine ("you are a" + " " + nouns[nounsIndex]);