Select all the correct ways to escape special characters.
A)
let regex = new RegExp('this one is correct\?');
B)
let regex = /this one is incorrect\?/;
C)
let regex = /I'm not right\\?/;
D)
let regex = new RegExp('I swear this one is right\\.');