Regular Expressions, How do you remove white space with special characters?

Thanks for showing me this tool, It’s very cool and useful.

I will try to figure that one out.

let hello = "   Hello, World!  ";
let wsRegex = /(?!=\s+)(?:\w+\D\s\w+\D)(?!=\s+)/; // Change this line
let result = hello; // Change this line

Why is this one not passing the test? On the tool it works.

Solution: Forgot to write down .match(wsRegex)

You will add this new solution to @camperbot at hint for this challenge? LINK