var myList = [
["No Dairy", 5, "Wine", 5, "Eggs", 5, "Pizza", 5, "Toast", 5 ],
["Wine", 5, ["Ice Cream", 5 ],
["Eggs", "Gum", 5 ],
["Cheese", "Fruit", 5 ],
["Onion", "Pear", 5 ],
]
];
console.log(myList);
I just wanted to mention that this is the error:
You must have at least 5 items in your list
and when it logs it does have 5 items. Any help is humbly appreciated.