diff --git a/2- javascript/7-simple-loops/simple-loops.js b/2- javascript/7-simple-loops/simple-loops.js index 5de108c..3e659a6 100644 --- a/2- javascript/7-simple-loops/simple-loops.js +++ b/2- javascript/7-simple-loops/simple-loops.js @@ -15,10 +15,10 @@ function getDogs(array){ // do not edit the assert statements function assert(testnum, bool){ - console.log('Test ' + testnum + ": " + bool) + console.log('Test ' + testnum + ": " + bool); } assert(1, challengeArray === ['New York', 'Burger', 'Philly', 'Burger', 'Jersey', 'Burger', 'Cali', 'Burger']); //Make sure you have the correct array - is the assert test working? Why not? Google! -//Write a custom test that allows it to prove challengeArray's equality. \ No newline at end of file +//Write a custom test that allows it to prove challengeArray's equality.