Como separar elementos de string em javascript

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