Variable names

Variable names are your choice, although as mentioned they cannot match the name of an existing command. The name needs to be unique and beware that they are not case sensitive. All of these variable names are treated exactly the same.

currentScore = 100
CurrentScore = 100
currentscore = 100
CURRENTSCORE = 100
cUrReNtScOrE = 100

Whether you choose to have your variables named all lowercase, or uppercase or a mixture is entirely your choice.