Как разделить элементы строковых в JavaScript

let string = "How are you?";
const newArr = string.split(" ");
baba