What is the text of the paragraph after the script runs?

First week is on usTry the free trial<html>
<body>
<h1>SwimFit</h1>
<p id="trial">Try the free trial</p>
<script>
document.getElementById("trial").innerHTML = "First week is on us";
</script>
</body>
</html>]]>