diff --git a/seed/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json b/seed/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json index 62f7510042..88122b06fa 100644 --- a/seed/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json +++ b/seed/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json @@ -30,7 +30,7 @@ "
'ABC'
"
],
"answer": 0,
- "explanation": "The map function will return a new array with each element equal to the old element ran through a callback function. Our callback function takes our original element, changes it to a upper case, and then wraps it in an array; thus, leaving us with [['A', 'B', 'C']]
"
+ "explanation": "The map function will return a new array with each element equal to the old element ran through a callback function. Our callback function takes our original element, changes it to a upper case, and then wraps it in an array; thus, leaving us with [['A'], ['B'], ['C']]
"
},
{
"subtitle": "Maps on Maps",