Terraria message-like message generator (please give feedback)

const subjects = [ 'Jhon Connor', 'Terminator', 'Bugs Bunny', 'The Lorax', 'Granny', 'Freddy Fazbear', 'Willy Wonka', 'Phineas', 'Ferb', 'Mahatma Ghandi', 'Jhon Cenna', 'Thanos', 'Iron Man', 'Leonardo Da Vinci', 'Minecraft Steve', 'Spiderman', 'Batman', 'Jamiroquai', 'Michael Jackson', 'Mordecai', 'Rigby', ]; const verbs = [ 'ate', 'stared at', 'fears', 'is in love with', 'hates', 'respects', 'is entranced with', 'was mutilated by', 'hopes to meet', 'hopes to never meet', 'will cook for', 'was defeated by', 'has been recognized by' ]; const superlative = [ 'super', 'ultra', 'hyper', 'mega' ] const prepositions = [ 'incredible', 'ancient', 'fascinating', 'scrumptious', 'smelly', 'ginormous', 'bubbling', 'sinister', 'whacky', 'sexy', 'menacing', 'pompous', 'crusty', 'hot', 'cold', 'young', 'wise', 'smart', 'idiotic', 'depressed', 'white', 'black', 'brown', 'yellow', 'purple', 'pink', 'green', 'red', 'spicy', 'salty', 'muscular', 'feeble', 'weak', 'strong', 'intoxicated' ]; const secondSubject = [ 'man', 'woman', 'guy', 'dude', 'child', 'iguana', 'dog', 'book', 'senator', 'old man', 'activist', 'cop', 'strongman', 'officer', 'burglar', 'doctor', 'vagabond', 'boy', 'girl', 'rubic cube', 'sheet of paper', 'toilet paper', 'mousepad', 'trouser', 'bra', 'shirt', 'chicken', 'cow', 'sheep', 'snake', 'ant', 'bee', 'homie' ]; function selectRandomWord (array){ return array[Math.floor(array.length * Math.random())] + " "; } console.log(selectRandomWord(subjects) + selectRandomWord(verbs) + "the " + selectRandomWord(superlative) + selectRandomWord(prepositions) + selectRandomWord(secondSubject));