Refer to the following object:
const company = {
employees: {
ceo: {
name: "Jensen",
salary: 0,
},
engineers: [
{
name: "Marie",
salary: 225000,
},
{
name: "George",
salary: 205000,
},
],
},
};