Positive and Negative Lookahead

this my attempt :slight_smile: :

Use lookaheads in the pwRegex to match passwords that are greater than 5 characters long, do not begin with numbers, and have two consecutive digits.
let sampleWord = "astronaut";
 
let pwRegex = /(?=^[A-z])(?=.*[^0-9][0-9]{2,})/;

let result = pwRegex.test(sampleWord);

the wired thing here that in the instructions they required that larger than 5 condition
and in this case the correct regex would be :

let pwRegex = /(?=^[A-z]{5,})(?=.*[^0-9][0-9]{2,})/; 

but this regex doesn’t pass the test !!

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

You can post solutions that invite discussion (like asking how the solution works, or asking about certain parts of the solution). But please don’t just post your solution for the sake of sharing it.
If you post a full passing solution to a challenge and have questions about it, please surround it with [spoiler] and [/spoiler] tags on the line above and below your solution code.