``` export function applyDiscount(product, discount = 5) { product.price = product.price - 5; // <- should be ** product.price - discount ** } ```