Explain the solution

Tell us what’s happening:

Can someone please explain the how the code that I wrote is working?

Your code so far


let sampleWord = "astronaut";
let pwRegex = /(?=\w{5,})(?=\D{2,}\d)/; // Change this line
let result = pwRegex.test(sampleWord);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/regular-expressions/positive-and-negative-lookahead/

I think it look out for 5 or more than 5 consecutive word. Have no idea for second part because according to me it should find 2 or more than 2 non digit and then a digit.

Can some one pls explain the solution?