A developer wrote a createUser() function to create new user objects. The problem is that each user has its own updateStatus() method.
createUser()
updateStatus()
If too many users sign up, the server could crash. Let's fix that by making the code use classes.