Concept Flow - Method overriding
Define Parent Class with method
Define Child Class overriding method
Create Child instance
Call method on Child instance
Child's method runs, not Parent's
Output result
Method overriding happens when a child class provides its own version of a method already defined in its parent class. When called on the child, the child's method runs.