background-color: pink;
text-align: center;
font-size: 30px;
margin-top: 20%;
}
我爱你!
function changeMessage()
const messages=["我爱你!","你是我的唯一!","永远爱着你!"];
document.getElementById("message").innerText=messages[Math.floor(Math.random()messages.length)];
}
