diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/steamroller/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/steamroller/index.md index ba163bee66..ce660e0aae 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/steamroller/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/steamroller/index.md @@ -82,7 +82,7 @@ You will definitely need recursion or another way to go beyond two level arrays return flat.some(Array.isArray) ? steamrollArray(flat) : flat; } - flattenArray([1, [2], [3, [[4]]]]); + steamrollArray([1, [2], [3, [[4]]]]); ![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":rocket:") Run Code