// Get a reference to the <button>const btn = document.querySelector('button')// Define object with `handleEvent` functionconst myObject = { handleEvent: (event) => { alert(event.type) },}// Listen for 'click' events on the <button> and handle them with `myObject`... WHAT?!?!btn.addEventListener('click', myObject)