const totalPrice = items.reduce((accumulator ,item) => {
  return accumulator += item.price;
}, 0)