How am i supposed to decide this . I think that have to work but it does not :(

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
function multiplyAll(arr) {
let product = 1;
// Only change code below this line
for(let i = 0;i<arr.legth;i++){
for(let j = 0;j<arr[i].length;j++){
  product = product * arr[i][j];
}
}
// Only change code above this line
return product;

}

multiplyAll([[1, 2], [3, 4], [5, 6, 7]]);
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0

Challenge: Nesting For Loops

Link to the challenge:

make special attention to typos,

… I am blind asf … i’ve just saw my mistake . Thanks ^^

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.