Concept Flow - Collection mutability tied to let/var
Declare collection with let or var
Is collection declared with let?
Collection is immutable
Attempt to modify?
Error: Cannot modify
This flow shows how declaring a collection with let makes it immutable, so modifications cause errors, while var allows changes.