diff --git a/week-2/2-mandatory/1-fix-functions.js b/week-2/2-mandatory/1-fix-functions.js index f29b1fc..ce80e39 100644 --- a/week-2/2-mandatory/1-fix-functions.js +++ b/week-2/2-mandatory/1-fix-functions.js @@ -40,7 +40,7 @@ function first5() { function get3rdIndex(arr) { let index = 3; let element = arr[index]; - + console.log(element); return element; }