So nehmen Sie mehrere Eingänge in einem ProPMT auf

const inputs = prompt("Enter your inputs separated by a tilde ~").split("~");

console.log(inputs);
Silly Stoat