What's wrong with this code?
- We haven't created an instance of the class so there doesn't exist a
name variable - We can't use variables in a class definition
- We need to put the print statement inside the class definition
We haven't created an instance of the class so there doesn't exist a name variable.