addEventListener needs to be called on an element. Let’s say your element is button, you would call button.addEventListener(). Inside the parenthesis you need a string that indicates the type of event, and then a function, which will be executed when the event happens
Just follow the steps and you will pass it, also you have to search what “empty arrow function” means, then you’ll notice that the answer was in the example FCC gives us.