Comment séparer les éléments de chaîne en javascript

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