Image Gallery src attributes

Hi guys im building small image gallery application. I want to change the src attribute of the main image, to equal the src attribute of the images in the thumb bar at the bottom when clicked on. But i believe my code is incorrect. I would appreciate an explanation of why my code doesnt work, thank you!

for (let i = 0; i < thumbBarImgs.length; i ++) {
thumbBarImgs[i].addEventListener(“click”, (e)=> {
displayedImage.src = e.target.src;
});
}