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 |
|---|---|---|---|
| 64 | 2025-11-02 07:53:34 | 42.38 | 94% |
| 58 | 2025-09-24 05:27:10 | 43.76 | 95% |
| 13 | 2025-07-05 08:46:10 | 34.69 | 94% |