Access the heading by assembling the code.

<html>
<body>
<h1 id="shop">Ron's Rubber Ducks</h1>
<p id="ducks">Best ducks in town</p>
<script>
document.getElementById("shop");
</script>
</body>
</html>]]>

Make sure to pick document, followed by getElementById, and finally "shop".