Display the paragraph's text by assembling the code inside the display statement.

<html>
<body>
<h3>60s Lyrics</h3>
<p id="lyrics">
Please allow me to introduce myself<br>
I'm a man of wealth and taste
</p>
<script>
var lyrics = document.getElementById("lyrics");
console.log(lyrics.innerHTML);
</script>
</body>
</html>]]>

Make sure to pick lyrics, followed by ., and finally innerHTML.