Build an Emoji Reactor step 11

I didn’t pass the test. Can someone help what does it mean.

The updateCount function should work correctly with any button element.
Your event listener should call updateCount with the button as an argument.
const happyBtn = document.querySelector("#happy-btn");

function updateCount(ele) {
    const countEl = ele.querySelector(".count");
    let currCount = +countEl.textContent.split("/")[0];
    
    return () => {
      if (currCount < 10) {
      currCount++;
      countEl.textContent = `${currCount}/10`;
    }
  }
}

happyBtn.addEventListener("click", updateCount(happyBtn));

you need to call updateCount when the button is clicked, and passing in a value. Do not make updateCount return a function, it will not pass the tests. Consider that you can give to addEventListener a different function

So i just need to modified a portion of updateCount function only?

in this step you are asked to create updateCount, and you are asked to update the callback of the addEventListener to call updateCount(happyBtn), as in you change the body of the callback function

Thank you for your help, i just need to pass a function reference rather calling updateCount(happyBtn) immediately.