Update the shop's name by filling in the missing code.

<html>
<body>
<h2 id="rental">Ben's Bike Rental</h2>
<script>
var title = document.getElementById("rental");
title.innerHTML = "Ron's Bike Rental";
</script>
</body>
<html>]]>

Make sure to pick title followed by . and then innerHTML, =.