An array of objects stores a collection of similar items. Each object has the same structure but different values.
const users = [
{ name: "Alice", age: 25 },
{ name: "Bob", age: 30 }
];
console.log(users[0].name); // "Alice"
Access works in two steps: bracket notation for the array index, then dot notation for the property.