I have just started programming and I am trying to do a quiz, but function is not working. Problem reads as follows and its not reading function handlefirst()
scripts.js:22 Uncaught TypeError: Failed to execute 'addEventListener' on 'EventTarget': The callback provided as parameter 2 is not an object.
buttonFq.addEventListener('click', handleFirst ())
const RespuestaIncorrecta = 'Tu respuesta es incorrecta'
const curiosityFirstQcontent = document.querySelector.innerTex("#curiosity-first-q");
function handleFirst() {
if(firstqq === "Stallone"){
return curiosityFirstQcontent = 'Correct'
}
else{
return 'Not correct'
}
}