What is the output that is printed when the div containing the text "Click Here" is clicked?
<pre><code>//HTML Markup
<div id="A"> <div id="B"> <div id="C">Click Here</div> </div></div></code></pre>
<pre><code>//JavaScriptdocument.querySelectorAll('div').forEach((e) => {
e.onclick = (e) => console.log(e.currentTarget.id);});</code></pre>