You can use the split method to split a string into an array. split uses the argument you pass in as a delimiter to determine which points
var string = "Split me into an array";
var array = [];
// Only change code below this line.
array = string.split(" ");