Abby Lee Miller (therealabbylee)

Race #1

View Pit Stop page for race #1 by therealabbyleeGhost race

View profile for Abby Lee Miller (therealabbylee)

Official speed 26.24 wpm (137.65 seconds elapsed during race)
Race Start July 14, 2023 8:12:06am UTC
Race Finish July 14, 2023 8:14:24am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 20.12
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.'; } }