I have an array called shopping list with elements containing the name of the product and its amount. Using the method .map I want to make a new array called product that only includes the product names from these elements. So that the new array would look like ['Milk', 'Coffee', 'Bananas', 'Bread'].
let shoppinglist = [ ['Milk', 1], ['Coffee', 2], ['Bananas'], ['Bread', 1] ];
const product = shoppinglist.map();
What do I put in after shoppinglist.map?