diff --git a/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json b/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json index 88122b06fad..8f635ab9247 100644 --- a/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json +++ b/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json @@ -70,7 +70,7 @@ }, { "subtitle": "More Map Hacking", - "question": "What will the following code print out?\n
const results = [8, 5, 3]\n  .map((a, i, o) => o[o.length - i - i])\nconsole.log(results);
", + "question": "What will the following code print out?\n
const results = [8, 5, 3]\n  .map((a, i, o) => o[o.length - i - 1])\nconsole.log(results);
", "choices": [ "
[3, 5, 8]
", "
[5, 3, 8]
",