// "Price: low to high" for the monitors page. Nothing throws - read the output.
function byPrice(prices) {
return prices.sort();
}
const monitors = [88, 105, 91, 76];
const listed = byPrice(monitors);
console.log("Low to high:", listed);
console.log("Most expensive:", listed[listed.length - 1]);
console.log("Featured tab still in the page's own order?", monitors);