Objects group related values under named properties. This beginner exercise uses one person object and one property update so the pattern stays easy to read.
const person = { name: 'Ava', age: 21, city: 'Porto' };
person.city = 'Lisbon';
Use object properties like person.name and person.city.