To make sure Student will have the same properties as Person, we have to code super().__init__(name, age).
Student
Person
super().__init__(name, age)
Make sure to pick super followed by ( and then ), ., __init__.
super
(
)
.
__init__