At the top of the page we are given the code
try! try bakery.orderPastry(item: “Cookie”, amountRequested: 1, flavor:
“ChocolateChip”)
The second try keyword is redundant and causes an error. The correct syntax should is
try! bakery.orderPastry(item: “Cookie”, amountRequested: 1, flavor:
“ChocolateChip”)