in index.js [65:73]
await fetch("data/products.json")
.then(data => data.json())
.then(json => products = json);
const productsSelect = document.getElementById('products');
for (const product in products) {
productsSelect.add(new Option(product, JSON.stringify(products[product]), defaultSelectedProduct(product), defaultSelectedProduct(product)));
}