John just invested $1000
const notifications = [
"John just invested $1000",
"Alice just withdrew $500",
"James just invested $200",
"Emily just withdrew $300",
"Michael just invested $1500",
"Sarah just withdrew $700"
];
let currentIndex = 0;
function updateNotification() {
const text = document.getElementById('notification-text');
currentIndex = (currentIndex + 1) % notifications.length;
text.textContent = notifications[currentIndex];
}
setInterval(updateNotification, 10000);