Set the content of the heading with the ID "title" to "News".

<html>
<body>
  <h1 id="title">Daily Scoop</h1>
  <script>document.getElementById("title").innerHTML = "News";</script>
</body>
</html>]]>

Make sure to assemble document.getElementById("title").innerHTML.