Hello!
I need a little help in this coding…
var randomNumber1 = parseInt(Math.random() * wordlist1.length);
var randomNumber2 = parseInt(Math.random() * wordlist2.length);
var name = wordlist1[randomNumber1] + “@” + wordlist2[randomNumber2];
I would like to get the first line: var randomNumber1 = parseInt(Math.random() * wordlist1.length);
to pick from top to the bottom of the wordlist instead of picking random… How should i do that?