I have a string, with a bunch of sentences separated by periods. For example:
const test = 'Dolore nostrud enim ea fugiat amet cupidatat enim. Fugiat qui tempor adipisicing velit et officia aliqua aliqua culpa ad veniam fugiat. Velit voluptate pariatur minim labore occaecat qui velit nostrud non deserunt non est voluptate. Quis est veniam sint nisi do.'
My desired outcome is to be able to turn each sentence of this paragraph into bullet points. I'm not concerned about creating the bullet points, I just need to break up this paragraph into an array of strings.
I'm assuming I need to write an algorithm that splits each sentence by a delimiter (doesn't have to a period but I used one in this example) and push them to a new array. I'm not that good working with regular expressions so I would appreciate any help.