Simpan string di array javascript

var arr =  "My name is Aditya Kumar".split(" ")
// returns [My, name, is, Aditya, Kumar]
Nasty Nightingale