JavaScript
// This code throws when you run it - read the error and fix the bug.
function formatPrice(item) {
  return `${item.name}: $${item.pirce.toFixed(2)}`;
}

console.log(formatPrice({ name: "Mouse", price: 19.99 }));