In `main.js` line 19: ``` if (i >= 0 && i < options.length - 1) { ``` I think it should be: ``` if (i >= 0 && i <= options.length - 1) { ```