Positive and Negative Lookaheadx

So I’ve got it to match the at least 6 characters thing pretty easily, but the two consecutive numbers is where I’m getting confused. What am I getting wrong here?

Your code so far


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

Your browser information:

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

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

can you review some of the posts on the subject and see if that helps you answer your question?
for eg: