moshrom6 (moshrom6)

Race #12

View Pit Stop page for race #12 by moshrom6Ghost race

View profile for moshrom6 (moshrom6)

Official speed 52.50 wpm (68.80 seconds elapsed during race)
Race Start June 10, 2025 9:00:39pm UTC
Race Finish June 10, 2025 9:01:48pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 40.25
Text #10015 (Length: 301 characters)

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.'; } }