What does this code display in the console?

MoMA Exhibitionsname.innerHTMLdocument.getElementById("museum")<html>
<body>
<h2 id="museum">MoMA Exhibitions</h2>
<p>Cy Twombly: A Retrospective</p>
<script>
var museum = document.getElementById("museum");
console.log(museum.innerHTML);
</script>
</body>
</html>]]>