cara memisahkan elemen string dalam javascript

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