What is the difference between the values of the variables first and second?

first stores h1, second stores pfirst stores "newspaper", second stores "headline"first stores an element, second stores the text of an elementsecond stores an element, first stores the text of an element<html>
<body>
<h1 id="newspaper">The Springfield Shopper</h2>
<p id="headline">President Simpson Wins Super Bowl</p>
<script>
var first = document.getElementById("newspaper");
var second = document.getElementById("headline");
</script>
</body>
</html>]]>

first stores h1, second stores p.