diff --git a/starter-code/src/array-functions.js b/starter-code/src/array-functions.js index 176323a..6b20e88 100644 --- a/starter-code/src/array-functions.js +++ b/starter-code/src/array-functions.js @@ -5,7 +5,7 @@ var ArrayFunctions = function (){} // 12 -- 33 -- 144 -- 122 ArrayFunctions.printSpecial = function (array) { - return array.join(" --- "); + return array.join(" --- ") ; }; // 2) Define a function that takes an array with numbers and returns another array where each element contains double each element in the array