Skip to content

Instantly share code, notes, and snippets.

@ziaulhoque24
Created February 28, 2023 16:46
Show Gist options
  • Save ziaulhoque24/e8cc7543238e2306e00e180b3c1d1a64 to your computer and use it in GitHub Desktop.
Save ziaulhoque24/e8cc7543238e2306e00e180b3c1d1a64 to your computer and use it in GitHub Desktop.
const Name = "Akash Ahmed";
const age = 23;
const message = [
`Happy birthday ${Name}! I hope you don't feel ${age} years older today.`,
`Congratulations on another year of surviving on this planet, ${Name}!`,
`Happy birthday to someone who is still a hot mess but looks great while doing it, ${Name}!`,
`On your birthday, I wish you peace, love, and lots of ridiculous memes to share with me, ${Name}!`,
`I'm so glad you were born, ${Name}, because I wouldn't have anyone to share my cake with today.`,
`Another year of existence down the drain! Congrats, ${Name}!`
];
console.log(message[Math.floor(Math.random() * message.length)]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment