From 289632502f00f8dfa39ba2d90dc7c29a4404bba5 Mon Sep 17 00:00:00 2001 From: George Mihov <53583283+gmihov001@users.noreply.github.com> Date: Wed, 1 Sep 2021 10:35:57 -0400 Subject: [PATCH] Make exercise more challenging By now students have seen how to compose for loop and how to print. They need to practice them. --- exercises/05.4-Add-items-to-array-looping/app.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/exercises/05.4-Add-items-to-array-looping/app.js b/exercises/05.4-Add-items-to-array-looping/app.js index 89a9460f..c7b31874 100644 --- a/exercises/05.4-Add-items-to-array-looping/app.js +++ b/exercises/05.4-Add-items-to-array-looping/app.js @@ -3,9 +3,5 @@ var arr = [4,5,734,43,45]; //***************** // Your code here // you need to loop 10 times, for example, using a for loop -// for(let i = 0; i<10;i++){ -// your loop content here -// } //***************** -console.log(arr); \ No newline at end of file