xxxxxxxxxx
23
function setup() {
noCanvas();
var sentence = "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.";
var words = splitTokens(sentence);
//console.log(words);
createDiv("<h1>The First Sentence of Pride & Prejudice</h1>");
for (var i = 0; i < words.length; i++) {
console.log(words[i]);
/*
Part 1 - how do we get this onto the HTML page?
*/
}
}