Answer:
var is used to initialize the pizza variable
Step-by-step explanation:
In order to create a variable, you first have to intiialize he variable.
This is the syntax to intiailize the variable:
var variableName
Thus, to initialize the pizza variable, you would do:
var pizza
Once you initialize the variable, you can then assign values to the variable.
pizza <- 3
Here, the value 3 is assigned to the pizza variable.