This is my example code:
let element = document.getElementById("element")
element.addEventListener("click", (ev)=>{
console.log("this is where I would remove the event listener")
})
I tried trying to find tutorials and websites telling me how to but none of them actually worked.`