Untitled

mail@pastecode.io avatar
unknown
javascript
2 years ago
603 B
2
Indexable
Never
const adjectives = ["Bloody", "Dark", "Twisted", "Eerie", "Horrific", "Macabre"];
const nouns = ["Nightmare", "Horror", "Abomination", "Terror", "Darkness", "Despair"];
const actions = ["Haunting", "Stalking", "Screaming", "Chasing", "Killing", "Tormenting"];

const randomIndex = (array) => Math.floor(Math.random() * array.length);

const randomAdjective = adjectives[randomIndex(adjectives)];
const randomNoun = nouns[randomIndex(nouns)];
const randomAction = actions[randomIndex(actions)];

const songTitle = `${randomAdjective} ${randomNoun} ${randomAction}`;

console.log(songTitle);