The JavaScript function changeText changes the text inside the circle. But again, there is no code to execute this function.
Complete the existing code below such that the function is called when the cursor moves onto the circle. Verify that your code works by hovering over the circle.
<div id="element">
Hover Me
</div>
const element = document.getElementById('element');
function changeText() {
}
element.addEventListener('<event to listen to>', changeText);
