Change the heading's text by assembling the code.

<html>
<body>
<h2 id="tours">Tokyo Tours</h2>
<script>
document.getElementById("tours").innerHTML = "Paris Tours";
</script>
</body>
<html>]]>

Make sure to pick .innerHTML, followed by =, and finally "Paris Tours".