Added a missing opening bracket (#34447)

There was a missing opening bracket for the array `romans`
This commit is contained in:
OLOGUNOWA Samuel
2019-02-15 04:45:57 +01:00
committed by Randell Dawson
parent 0a330e65f9
commit ce17020fed

View File

@ -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