Here's the screenshot and the code. And how can I change it to something like "This page says" then alert().
<button id="hover-me"> Move the cursor over here </button>
document.getElementById("hover-me").onmouseover = function() {
alert("You hovered me")};