division du tableau de fléchettes

var string = "Hello world!";
string.split(" ");                      // ['Hello', 'world!'];
Confused Cat