When objects contain arrays, or arrays contain objects, you chain access notation. Read left to right: each step drills deeper.
const data = {
users: [{ name: "Alice" }]
};
console.log(data.users[0].name); // "Alice"
data.users returns the array. [0] gets the first object. .name reads its property.