< The confusing part about this exercise is that the question refers to the delivery_time as date of delivery/>
SELECT DATE(date_of_delivery), count(*) as count_baked_goods
FROM baked_goods
GROUP BY DATE(date_of_delivery);
```<Correct code/>
SELECT DATE(delivery_time), count(*) as count_baked_goods
FROM baked_goods
GROUP BY DATE(delivery_time);