You do not have anything in your regular expression that impose the matching of the whole string. The test method will return true if it finds a part of the string that satisfy the pattern, to do otherwise (for the whole string to match the pattern) you need to specify so. You have learned how to do it in one of the previous lessons.
Also, be aware that lookaheads will all match from the same position.
Once you have fixed that, click here to show second hint
\D*\d{2,} match zero or more non numbers followed by at least 2 numbers. Instead the challenge asks for at least two consecutive numbers but it never says that there can’t be numbers in the string before that.
I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.