/* Made by Eta_Hippo Have fun. And one thing: It creates random letters and make a word out of them So the words that come out are not really real words */ function createRandomWord(length) { var consonants = 'bcdfghjklmnpqrstvwxyz', vowels = 'aeiou', rand = function(limit) { return Math.floor(Math.random()*limit); }, i, word='', length = parseInt(length,10), consonants = consonants.split(''), vowels = vowels.split(''); for (i=0;i