Sharick_Chungara (sharick_chungara)

Race #86

View Pit Stop page for race #86 by sharick_chungaraGhost race

View profile for Sharick_Chungara (sharick_chungara)

Official speed 32.94 wpm (109.65 seconds elapsed during race)
Race Start June 22, 2025 10:55:13pm UTC
Race Finish June 22, 2025 10:57:02pm UTC
Outcome No win (2 of 14)
Opponents 3. samiraarancibia123426 (32.82 wpm)
6. alex_ramos (29.53 wpm)
7. tocsky (29.14 wpm)
Accuracy 96.0%
Points 25.26
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.'; } }