Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBen Hobgood
1,791 PointsMy solution
I might have gone about creating my solution in an odd way, but I'm happy with the results. https://w.trhou.se/forexnfod8
1 Answer
Carlos Martinez
5,136 PointsHey, I really like the solution you are proposing, also I like the comments. I think you can use the ES2015 and use const and let for the variable declaration and maybe use arrow functions.
// Set up an array to store what questions we got right
const correct = [ ];
// Set up an array to store what questions we got wrong
const incorrect = [ ];
const ask = question => prompt(question).toLowerCase();
As you can see your functions can be written easier and your variables will comply with the current practices.