/* Just to say, this will only generate random letters and make them into a word Have fun with the code and i will see you in my next code - Blan_Hippo */ 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