"Iterate Through All an Array's Items Using For Loops"

I clicked on the “Run Tests” button but no tests was done. (The flasks don’t become ticks or crosses)


function filteredArray(arr, elem) {
  let newArr = [];
  // change code below this line
  a: for(let p = 0;p < arr.length;p++) {
    for(let u =0;u<arr[p].length;u++)
      if(arr[p][u]===elem) continue a;
    newArr.push(arr[p]);
  }
  // change code above this line
  return newArr;
}

// change code here to test different cases:
console.log(filteredArray([[3, 2, 3], [1, 6, 3], [3, 13, 26], [19, 3, 9]], 3));

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-data-structures/iterate-through-all-an-arrays-items-using-for-loops