Stocker String in Array JavaScript

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