Design an e-commerce system that has these features:

Notes:

cart.add(cheese, 2);
cart.add(tv, 3);
cart.add(scratchCard, 1);

checkout(customer, cart);

CONSOLE OUTPUT

- * Shipment notice **

2x Cheese        400g

1x Biscuits      700g

Total package weight 1.1kg

- * Checkout receipt **

2x Cheese        200

1x Biscuits      150

- ---------------------

Subtotal         350

Shipping         30

Amount           380

Submit your answer to the following form: