App Lab - Color Sleuth - not keeping score

One of my students is working on the Color Sleuth project in App Lab.

Here is a view of her app in its current state:
App Link

The code is switching players after each selection, it’s indicating (correctly) in the console whether or not each selection is right or wrong, and is seemingly intending to add or subtract the appropriate number of points in each case (+2 for correct; -1 for incorrect). However, it is not writing the scores to the screen in the app for either player.

Any thoughts would be helpful. Thanks!

Hi @a.digiovanni,

Very creative game! The structure appears to be correct. The student just needs to adjust the syntax so that the function updateScoreBy(amt) is called correctly because this function is where the work is done to update p1score and p2score and display the scores. Right now, if the player chooses correctly, the code says: image. This code points to a variable but does not run the function. Instead, look for this block to call the updateScoreBy(amtOfPoints) function: image. Also, I don’t believe the variable updateScoreBy is needed and can be deleted.

Hope that helps!
~Michelle

Many thanks Michelle!