Changing an instance also doesn't affect any other instances.

Set user1.isOnline to false to see how changing a property from user1 doesn't affect the properties of user2.

Notice how after we've changed user1.isOnline to false, user2.isOnline still has the value true set from the User class?

Make sure to write false in your code.