Spot the bug - #113: Card Size Helper

Object bug, one line off.

const card = { width: 320, height: 180 };
const { widht, height } = card;

console.log(widht * height);

Reply with what is broken and how you would fix it.