/**
  * Delete a product from the checkout given it's barcode in the checkout array
  *
  * @param barcode The index of the item to delete in the checkout array
  */
 public static void deleteProduct(int barcode) {
   checkOuts.delItem(barcode);
 }