Every time we create an object from a class, we're creating what's called an instance of that class.
Create an instance of the User class and store it in the variable user1.
User
user1
Make sure you've added new User("Arya"); to your code.
new User("Arya");