Need to find an object by Sarah owner
const dogs = [
{ weight: 22, curFood: 250, owners: ['Alice', 'Bob'] },
{ weight: 8, curFood: 200, owners: ['Matilda'] },
{ weight: 13, curFood: 275, owners: ['Sarah', 'John'] }, //need to find this string by name
{ weight: 32, curFood: 340, owners: ['Michael'] },
];
const findeOwner = dogs.find(acc => acc.owners === 'Sarah');
just doesnt work If I remove the square brackets, then the method will work, but this is against the rules. Would you help me?