I'd like to create dummy text with 1000 words using javascript. My idea is that use an array like this
var words =["The sky", "above", "the port","was", "the color of television", "tuned", "to", "a dead channel", ".", "All", "this happened", "more or less","." ,"I", "had", "the story", "bit by bit", "from various people", "and", "as generally", "happens", "in such cases", "each time", "it", "was", "a different story","." ,"It", "was", "a pleasure", "to", "burn"];
then use javascript output 1000 words randomly. How would I do that using javascript? any other ways to do it?