Concept Flow - Method overriding behavior
Define Parent class with method
Define Child class overriding method
Create Child object
Call method on Child object
Child's method runs, not Parent's
End
This flow shows how a child class replaces a parent's method with its own when called on a child object.