2020-03-31 02:16:08 +08:00
|
|
|
var adjectives = [
|
|
|
|
"small",
|
|
|
|
"big",
|
|
|
|
"large",
|
|
|
|
"smelly",
|
|
|
|
"new",
|
|
|
|
"happy",
|
|
|
|
"shiny",
|
|
|
|
"old",
|
|
|
|
"clean",
|
|
|
|
"nice",
|
|
|
|
"bad",
|
|
|
|
"cool",
|
|
|
|
"hot",
|
|
|
|
"cold",
|
|
|
|
"warm",
|
|
|
|
"hungry",
|
|
|
|
"slow",
|
|
|
|
"fast",
|
|
|
|
"red",
|
|
|
|
"white",
|
|
|
|
"black",
|
|
|
|
"blue",
|
|
|
|
"green",
|
|
|
|
"basic",
|
|
|
|
"strong",
|
|
|
|
"cute",
|
|
|
|
"poor",
|
|
|
|
"nice",
|
|
|
|
"huge",
|
|
|
|
"rare",
|
|
|
|
"lucky",
|
|
|
|
"weak",
|
|
|
|
"tall",
|
|
|
|
"short",
|
|
|
|
"tiny",
|
|
|
|
"great",
|
|
|
|
"long",
|
|
|
|
"single",
|
|
|
|
"rich",
|
|
|
|
"young",
|
|
|
|
"dirty",
|
|
|
|
"fresh",
|
|
|
|
"brown",
|
|
|
|
"dark",
|
|
|
|
"crazy",
|
|
|
|
"sad",
|
|
|
|
"loud",
|
|
|
|
"brave",
|
|
|
|
"calm",
|
|
|
|
"silly",
|
|
|
|
"smart",
|
|
|
|
];
|
2020-03-29 03:22:27 +08:00
|
|
|
|
2020-03-31 02:16:08 +08:00
|
|
|
var nouns = [
|
|
|
|
"dog",
|
|
|
|
"bat",
|
|
|
|
"wrench",
|
|
|
|
"apple",
|
|
|
|
"pear",
|
|
|
|
"ghost",
|
|
|
|
"cat",
|
|
|
|
"wolf",
|
|
|
|
"squid",
|
|
|
|
"goat",
|
|
|
|
"snail",
|
|
|
|
"hat",
|
|
|
|
"sock",
|
|
|
|
"plum",
|
|
|
|
"bear",
|
|
|
|
"snake",
|
|
|
|
"turtle",
|
|
|
|
"horse",
|
|
|
|
"spoon",
|
|
|
|
"fork",
|
|
|
|
"spider",
|
|
|
|
"tree",
|
|
|
|
"chair",
|
|
|
|
"table",
|
|
|
|
"couch",
|
|
|
|
"towel",
|
|
|
|
"panda",
|
|
|
|
"bread",
|
|
|
|
"grape",
|
|
|
|
"cake",
|
|
|
|
"brick",
|
|
|
|
"rat",
|
|
|
|
"mouse",
|
|
|
|
"bird",
|
|
|
|
"oven",
|
|
|
|
"phone",
|
|
|
|
"photo",
|
|
|
|
"frog",
|
|
|
|
"bear",
|
|
|
|
"camel",
|
|
|
|
"sheep",
|
|
|
|
"shark",
|
|
|
|
"tiger",
|
|
|
|
"zebra",
|
|
|
|
"duck",
|
|
|
|
"eagle",
|
|
|
|
"fish",
|
|
|
|
"kitten",
|
|
|
|
"lobster",
|
|
|
|
"monkey",
|
|
|
|
"owl",
|
|
|
|
"puppy",
|
|
|
|
"pig",
|
|
|
|
"rabbit",
|
|
|
|
"fox",
|
|
|
|
"whale",
|
|
|
|
"beaver",
|
|
|
|
"gorilla",
|
|
|
|
"lizard",
|
|
|
|
"parrot",
|
|
|
|
"sloth",
|
|
|
|
"swan",
|
|
|
|
];
|
2020-03-29 03:22:27 +08:00
|
|
|
|
2020-03-27 04:44:58 +08:00
|
|
|
var adjective = adjectives[Math.floor(Math.random() * adjectives.length)];
|
|
|
|
var noun = nouns[Math.floor(Math.random() * nouns.length)];
|
|
|
|
noun = noun.charAt(0).toUpperCase() + noun.substring(1);
|
|
|
|
adjective = adjective.charAt(0).toUpperCase() + adjective.substring(1);
|
2020-03-31 02:16:08 +08:00
|
|
|
document.getElementById("input-01").value = adjective + noun;
|