links.forEach((link)=> {
/*
*important may you face an problem that's becuase the arow function
doesn't work here.
--so dont use arow function--
*/
link.addEventListener('click', function(){
links.forEach((e)=> {e.classList.remove('active')})
this.classList.add('active')
})
})