This project is not showing the pictures -
what am I missing? appreciate the help.
On line 57 you cannot use choice as an index to access elements in your filteredImageList since choice is a letter and not a number. For instance, if I choose “A” from your dropdown menu, choice is set to “A”. Since you are simply displaying the image of the last letter chosen, you could use filteredImageList.length-1
setImageURL("signPictures", filteredImageList[filteredImageList.length-1]);
Thank you!! -
I appreciate the feedback.