const getMood = () => { const moods = ["Angry", "Hungry", "Silly", "Quiet", "Paranoid"]; return moods[Math.floor(Math.random() * moods.length)]; };