Hi guys, could u tell whats wrong here, thanks

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.length; i++){
    for(let j = 0; j < arr[i].length; j++){
      product *= [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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36

Challenge: Nesting For Loops

Link to the challenge:

the problem is in this line [i] and [j] are the indexes

product *= [i][j]

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.


This is suspicious. What are you trying to index into here?

thank uu hehehe arr… im very sleepy

1 Like

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