wonderful
Version:
A bunch of nice words and phrases to describe someone!
11 lines (6 loc) • 384 B
JavaScript
;
let words = [ "lovely", "amazing", "wonderful", "great", "thoughtful", "generous", "charming", "bold", "unique", "wondrous", "striking", "polished", "elegant", "amusing", "intellegant", "gracious", "kind", "honest", "entertaining", "witty", ];
function random() {
return words[Math.floor(Math.random() * words.length)]
}
module.exports = {default: words, random};