let removeSelectors = document.getElementsByClassName("removeSelector")
removeSelectors.addEventListener("click", function(){console.log(removeSelectors)})
// Ive put a console.log bc I first wanted to test if it would work, then I was going to see how to make the function target the element you've clicked on
let removeSelectors = document.getElementsByClassName("removeSelector")
removeSelectors.addEventListener("click", function(){console.log(removeSelectors)})
// Ive put a console.log bc I first wanted to test if it would work, then I was going to see how to make the function target the element you've clicked on