// Calculate the total cost of all items with discounts applied
const totalCost = coatPrice * coatDiscount
+ topHatPrice * topHatDiscount
+ shirtPrice * shirtDiscount
+ pantsPrice
+ shoesPrice * shoesDiscount;
// Check if the account balance is enough to purchase the items
if (totalCost <= accountBalance) {
console.log("You have enough funds to purchase all the items!"
} else {
console.log("Sorry, you don't have enough funds to purchase all the items."
}