Use innerHTML to access the paragraph's text through the variable rental.

<html>
<body>
<h1 id="rental">Retro Movie Rental</h1>
<p id="favorite">We have your favorite oldie</p>
<script>
var rental = document.getElementById("favorite");
console.log(rental.innerHTML);
</script>
</body>
</html>]]>

Make sure to type rental.innerHTML.