let string = 'Hi, how& are you? bro!'; let arr = string.match(/w+/g); // ['Hi', 'how', 'are', 'you', 'bro']