I have this right now:
"arcade racing games".match(/\b(?:arcade racing|arcade|racing)\b/ig)
which gives me this result: ["arcade racing"]
I want it to give me this result instead: ["arcade racing", "arcade", "racing"]
Is there a way for me to do this with 1 regex search, without using a loop or high level functions like map or filter?