I need help please. Can't find any error in the codes:
export const strings = [{
type: 'Dog',
name: 'Rex',
}, {
type: 'Horse',
name: 'Stallion',
}];
console.log (strings.length);
strings.push ({type: 'Cat', name: 'Murka'}, {type: 'Boy', name: 'Mayor'}, {type: 'Girl', name: 'Mariam'});
Error Message: Every element in the strings array should be a string