Create a function called getFirstNames
where it takes a nested array of names and returns just the first name of each array
getFirstNames([["Ahmed","Aisha","Amina"],["Jaamac","Khadijah","Layla"],["Mohamed","Ali"]]) β ["Ahmed","Jaamac","Mohamed"]
Good Luck π