Portfolio Project

// Array of messages
const messages = [
“Keep pushing forward!”,
“Believe in yourself.”,
“You are capable of amazing things”,
“Take it one step at a time”,
“Every day is a second chance. Don’t waste it!”,
“Stay positive and strong.”,
“You’re doing great, keep it up!”,
“Good things are coming your way!”
];

// Function to get a rondom message
function getRandomMessage() {
const index = Math.floor(Math.random() * messages.length);
const randomMessage = messages[index];
document.getElementById(‘message’).textContent = randomMessage;
}

// Output the random message
console.log(getRandomMessage());