Once we've created a subclass, we make sure the Student class also has the properties of User by coding super(name, age);.
Student
User
super(name, age);
Make sure to pick super, followed by name, and finally age.
super
name
age