Concept Flow - Class syntax
Define class with constructor and methods
Create instance with 'new'
Constructor runs, sets properties
Call methods on instance
Methods use instance properties
Output or return results
This flow shows how a class is defined, an object is created, and methods are called using that object.