Instead of newing up class instances based off a method: ```typescript flight = Flight.new() ``` I think I'd like to explore how most other language new up instances through a dedicated `new` keyword: ```typescript flight = new Flight() ``` Reads easier when parsing code and is already intuitive for most developers coming in with past experience.