"use strict"; function splitWords(sentence) { // Split the sentence on whitespace and return the resulting array return sentence.split(/\s+/g); } export default splitWords;