I was told that an 'event object' gets passed as a parameter to the function in the program below. What would an example of an 'event object' be? Is it, for example, the <p> element if you clicked on a <p> or <html> if you clicked on <html>, or is the event object the actual 'click'?
document.addEventListener('click', function(e){
console.log(e.target.nodeName);
},false);