Then, still in the Actions pane for that frame, create a variable called score, and make it equal to 0:
stop( ) ;
var score=0;
Remember, var defines a variable when you place it in front of a new variable name. Well be using score to track the users quiz score by adding one to the value of score every time that they click a correct answer.


