Implement `extractNumbers(s)` returning an array of the digit-runs found in `s`, or an empty array if there are none.
+ 1 hidden test run on Submit.
Matching /\d+/g collects each run of digits; the || [] guards the no-match case.
Run your code to see results.