function takeOrder(topping, crustType) {
console.log(‘Order:’ + crustType + ‘crust topped with’ + topping);
}
takeOrder(thincrust’,’ bacon);
error is:Did you call the takeOrder function with two strings within its parentheses, separated by commas?
Help!!!