Concept Flow - Super keyword
Create Subclass Object
Call Subclass Constructor
Inside Subclass Constructor
Use super() to call Parent Constructor
Parent Constructor runs
Return to Subclass Constructor
Complete Subclass Constructor
Object Ready
Shows how creating a subclass object calls the subclass constructor, which uses super() to run the parent constructor first, then finishes.