Display the heading's text by typing name and then adding the .innerHTML instruction.

<html>
<body>
<h3 id="facts">Historical Fun Facts</h3>
<script>
var name = document.getElementById("facts");
console.log(name.innerHTML);
</script>
</body>
</html>]]>

Make sure to type name.innerHTML.