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 |
|---|---|---|---|
| 153 | 2025-11-19 19:42:27 | 39.14 | 97% |
| 142 | 2025-11-08 20:11:00 | 41.90 | 97% |
| 91 | 2025-09-23 04:40:08 | 24.06 | 97% |
| 75 | 2025-07-05 02:34:25 | 39.28 | 97% |
| 29 | 2025-06-28 23:45:08 | 34.53 | 95% |
| 9 | 2025-06-04 20:17:17 | 36.11 | 97% |
| 5 | 2025-06-04 20:10:53 | 33.22 | 95% |