Problem = Write Higher Order Arrow Functions

please tell me my mistake

Your code so far


const realNumberArray = [4, 5.6, -9.8, 3.14, 42, 6, 8.34, -2];
const squareList = (arr) => {
  "use strict";
  // change code below this line
  const squaredIntegers = arr.filter((num) => num >0 && num % parseInt(num) ===0).map((num) => Math.pow(num),2);
  // change code above this line
  return squaredIntegers;
};
// test your code
const squaredIntegers = squareList(realNumberArray);
console.log(squaredIntegers);

the issue is here, try figuring out exactly what’s wrong on your own

yes solve it
map((num) => Math.pow(num),2) was wrong
map((num) => Math.pow(num,2) ) is correct.