function calculateArea(width, height) { try { var area = width * height; if (!isNaN(area)) { return area; } else { throw new Error('calculateArea() received invalid number'); } } catch(e) { console.log(e.name + ' ' + e.message); return 'We were unable to calculate the area.'; } }
| Game | Time | WPM | Accuracy |
|---|---|---|---|
| 23 | 2025-11-17 12:22:22 | 49.43 | 96% |
| 15 | 2025-11-15 13:12:55 | 43.32 | 95% |