regex to grep text from numbered list in javascript

I would like to extract texts from a numbered list to an array in javascript using regex.

  1. this is sentence one
  2. this is sentence two
  3. this is sentence three

Expected output:
Array = [“this is sentence one”, “this is sentence two”, “this is sentence three”]

Appreciate if explanation provided.