var people = [
{
name: "Mike",
age: 12,
gender: "male"
},{
name: "Madeline",
age: 80,
gender: "female"
}
]
How do i Loop through the array and log to the console "old enough" if they are 18 or older, and "not old enough" if thy aren't 18. how do i do it, any help, thanks in advance