Node JS -код для сохранения первой середины и фамилии

var studentFullName="John Smith";
var details=[]
var details=studentFullName.split(' ');
console.log("StudentFirstName="+details[0])
console.log("StudentLastName="+details[1]);
Enthusiastic Earthworm