I somehow copied incorrect code it should read as follows:
`var myArray = ;
var i = 0;
while (i < 6) {
myArray.push(i);
i++;
}`
Thanks for your reply. I noticed the error myself and rewrote (refactored?) the line and it is still not passing both tests - the log is returning 012345 and not 543210