We can also use the variable to update the paragraph's content, by adding = and the new value "No Messages".

<html>
<body>
<h3>Tweeter</h3>
<p id="messages">New Messages</p>
<script>
var pElement = document.getElementById("messages");
pElement.innerHTML = "No Messages";
</script>
</body>
</html>]]>

Make sure to pick =, followed by "No Messages".