this is my code javascript i do not know where the problem is ? it is just displaying first name ?
//
let people = [{
first_name: "Riche",
last_name: "Aboubaker"
},
{
first_name: 'KADD',
last_name: 'Missinsn'
},
{
first_name: 'laala',
last_name: 'Jason'
},
]
// create new array with the string full name of each person
let fullNames = people.map((person) => {
return person.first_name , person.last_name ;
});
console.log(fullNames);