@tracy.d.grayson I think I found what is causing your program not to run. If you look at your line #6, you start it with “var”. You already “declared” the clicks variable in the first line of your code, so every time you refer to it after that, you don’t need to start with “var”. If you change that link to simply read clicks = clicks + 1; (without the var), it should work.
Also, I removed the link to the teacher solution in your message because students have been known to lurk in the forum looking for answer keys. Not sure they could access it without a teacher account, but just wanted to make sure!