https://www.youtube.com/watch?v=Yw-SYSG-028&t=1271s
- There were not many tutorials out there that showed how to make a type-racer game and I sought inspiration from this video, especially in line 64 where there was a function matchWords () { function to determine whether the word typed by the user was correct, or there would be an else function to mark the answer as incorrect.

- This inspired my string of code below, which determines whether the word typed by the user is correct. If it is typed incorrectly, the user is unable to move onto the next word.

https://www.youtube.com/watch?v=3X43y0PdjUQ
- This videos also helped me with some aspects of coding the typeracer game, most predominantly the words per minute count. Although it was in Javascript, I selected certain parts to be translated into p5js and use it in my project Notably, I took inspiration from this part of the code which he defined wps to be numberofWords/seconds; and wpm to be wps*60:

- This inspired my string of code below from lines 1110 to 1114 which computes the number of words per minute typed by the user:
