This was a really great tutorial series - easy to follow and quick to build! I think I have found a small issue with the following code: https://github.com/jamesqquick/Build-A-Quiz-App-With-HTML-CSS-and-JavaScript/blob/91c50220bec089643e8ddb35e4a14f6b16ffb684/12.%20Create%20a%20Spinning%20Loader/game.js#L30 `Math.random()` returns a value in the range [0,1), i.e. it will never return 1 - see [source](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random). So it looks like the code will only return values of 1, 2 or 3. Never 4. I think a simple fix is the following: `formattedQuestion.answer = Math.floor(Math.random() * 4) + 1; `