finding the length of an array which is inside an object using brackett notation? [duplicate]

const description = {
firstName: “Johnny”,
lastName: “Bravo”,
dob: 1992,
friends: [“John”, “Jacob”, “Valentine”, “Richard”, “Mike”],
job: “janitor”,
};

I need to find friends’s length using Brackett notation.