Cómo separar elementos de cadena en JavaScript

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