// Create variables for the first product
let productName1 = "Laptops";
let productPrice1 = 1200;
let productStock1 = 10;
// Create variables for the second product
let productName2 = "Smartphones";
let productPrice2 = 800;
let productStock2 = 25;
// Output messages describing each product's stock and price
console.log(`The store has ${productStock1} units of ${productName1} priced at $${productPrice1} each.`);
console.log(`The store has ${productStock2} units of ${productName2} priced at $${productPrice2} each.`);