Concept Flow - Common bugs from reference sharing
Create Object A
Assign Reference to B
Modify Object via B
Check Object via A
See Changes Reflect in A
Unexpected shared state bug
When two variables share a reference to the same object, changes through one affect the other, causing unexpected bugs.