From ce17020fed56b45f889120b8d954979ab45a8fbe Mon Sep 17 00:00:00 2001 From: OLOGUNOWA Samuel Date: Fri, 15 Feb 2019 04:45:57 +0100 Subject: [PATCH] Added a missing opening bracket (#34447) There was a missing opening bracket for the array `romans` --- .../roman-numeral-converter/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/roman-numeral-converter/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/roman-numeral-converter/index.md index b94edb1acd..af91581956 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/roman-numeral-converter/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/roman-numeral-converter/index.md @@ -144,7 +144,7 @@ You can't have more than three consecutive Roman numerals together. ## ![:sunflower:](https://forum.freecodecamp.com/images/emoji/emoji_one/sunflower.png?v=3 ":sunflower:") Intermediate Code Solution: function convertToRoman(num) { - var romans = + var romans = [ // 10^i 10^i*5 ["I", "V"], // 10^0 ["X", "L"], // 10^1