Created
March 15, 2020 17:11
-
-
Save darklight9811/226c9a31eec0157f807e102d17d48d0b to your computer and use it in GitHub Desktop.
Idiocrat name generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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