What will the document.write() statement display, given the following code snippet? var scores = new Array[94, 90, 88, 82, 73, 70, 75]; var lgth = scores.length; document.write("There are " + lgth + "scores recorded. The dropped score is " + scores[lgth – 1]);