public static string MakeFakeMessage()
string[] words = new string[]{ "hey", "how", "is", "the", "shit", "doing", "what", "this", "its", "haha", "neat", "where", "ok", "notes" };
int numWords = random.Next(5, 25);
for (int i = 0; i < numWords; i++)
index = random.Next() % words.Length;
output += words[index] + " ";
index = random.Next() % words.Length;
output += words[index] + ".";
public static void Main()
string[] names = new string[]{ "Nick", "Tyler" };
for (int i = 0; i < 100; i++)
msg += names[random.Next(0, 2)] + ": ";
msg += MakeFakeMessage();