function changeColor() { const title = document.getElementById('greeting'); const colors = ['#00ff88', '#ff0088', '#0088ff', '#ffff00']; const randomColor = colors[Math.floor(Math.random() * colors.length)]; title.style.color = randomColor; }