Change the bike rental's owner by updating the heading's text.

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

Make sure to pick document.getElementById("tours") followed by .innerHTML and then =, "Paris Tours".