J Gary (jgary199)

Race #40

View Pit Stop page for race #40 by jgary199Ghost race

View profile for J Gary (jgary199)

Official speed 45.23 wpm (50.41 seconds elapsed during race)
Race Start May 24, 2025 3:17:24pm UTC
Race Finish May 24, 2025 3:18:15pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 17.34
Text #10019 (Length: 190 characters)

import string from random import * characters = string.ascii_letters + string.punctuation + string.digits password = "".join(choice(characters) for x in range(randint(8, 16))) print password