Skip to content

Instantly share code, notes, and snippets.

@darklight9811
Created March 15, 2020 17:11
Show Gist options
  • Select an option

  • Save darklight9811/226c9a31eec0157f807e102d17d48d0b to your computer and use it in GitHub Desktop.

Select an option

Save darklight9811/226c9a31eec0157f807e102d17d48d0b to your computer and use it in GitHub Desktop.
Idiocrat name generator
const prefix = [
"Bolso",
"Bolbo",
"Boldo",
"Bozo",
"Bolo"
];
const suffix = [
"naro",
"nero",
"liro",
"ssauro",
"niro"
];
function generate () {
return prefix[parseInt(Math.random() * (prefix.length))] + suffix[parseInt(Math.random() * (suffix.length))];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment