JavaScript Algorithms and Data Structures Projects--- Palindrome Checker

Stuck Guys, i need the force… were is the Code Masters At… May day, May day FCC STUCKED LEARNER COME IN…:rofl: Kind assist us to understand what’s wrong.

  let nonAL = str.toLowerCase().split(/\W/);

  if(nonAL === nonAL.reverse()) {
    return true;
  }
  return false;
}

https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/palindrome-checker