What is the correct way to set the username for a Customer object?
1) c1.userName = c1.setUserName("Sophia");
2) c1.setUserName("Sophia");
3) c1.userName("Sophia");
4) c1.userName = "Sophia";