Which of these statements change the name property of person?

person.name = "Christopher";person["name"] = "Win";person[0] = "Christopher";person[name] = "Kessie";

Good work! We can use the bracket or the dot notation to create, access and change a property.

Almost! We can use the bracket or the dot notation to create, access and change a property.