Great job using JavaScript to access and update an element's text. Run the code and take a look at Jolene's status!

<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>]]>