Retrieve the paragraph's text by coding the .innerHTML instruction.

<html>
<body>
<h1 id="news">Science Daily</h1>
<p id="first">You find out first</p>
<script>
document.getElementById("first").innerHTML;
</script>
</body>
</html>]]>

Make sure to type .innerHTML.