// Happy New Year 2026 Script
function happyNewYear() {
const year = 2026;
const message = `🎉🎆 Happy New Year ${year}! Wishing you a year full of joy, success, and happiness! 🎆🎉`;
console.log(message);
alert(message);
}
// Call the function to display the message
happyNewYear();
Happy New Year 2026