<div id="myTextBox">Hover over me!</div> <script> const textBox = document.getElementById('myTextBox'); textBox.addEventListener('mouseover', () => { textBox.textContent = 'Mouse is over!'; textBox.style.backgroundColor = 'lightblue'; }); textBox.addEventListener('mouseout', () => { textBox.textContent = 'Hover over me!'; textBox.style.backgroundColor = 'white'; }); </script>