Concept Flow - Calling super for parent behavior
Child method called
Child method runs custom code
Call super.method()
Parent method runs
Return to child method
Child method finishes
When a child class method runs, it can do its own work and then call the parent class method using super to keep the parent's behavior.