Finally, update Jolene's status to "online" by assembling the code.

<html>
<body>
<img src="https://mimo.app/r/jo.png">
<h3>Jolene</h3>
<p>
<em id="status">offline</em>
</p>
<script>
var element = document.getElementById("status");
element.innerHTML = "online";
</script>
</body>
</html>]]>

Make sure to pick =, followed by "online", and finally ;.