The first part of creating a variable is called declaration, while giving it a value is called initialization.
Let's create a new variable called villain and give it a value.
Good! We used var to declare a variable named villain and initialized it with the value "Joker".
Yikes! Setting the variable value to "Joker" is called initializing and should be done as the last step.