Great job!
Try again
Using Quorum's naming rules, fix the three variable name errors in this program. Variable names can use numbers or symbols but cannot begin with them. Variables names cannot end with _ (an underscore) and cannot have spaces. Also, each variable should have a different and meaningful name. For example, if you are storing a first name from a form the variable should be named something like firstName
or first_name
. Also, know that the names in Quorum are case sensitive. This means firstname
is not the same as FirstName
.