// Simple greeting rotator const greetings = [ "Hello, SnipShare!", "Bonjour, SnipShare!", "Hola, SnipShare!", "Ciao, SnipShare!", "Hallo, SnipShare!", "Konnichiwa, SnipShare!", ]; let currentIndex = 0; const heading = document.getElementById("greeting"); const button = document.getElementById("change-btn"); button.addEventListener("click", () => { currentIndex = (currentIndex + 1) % greetings.length; heading.textContent = greetings[currentIndex]; heading.style.color = `hsl(${currentIndex * 60}, 70%, 45%)`; });