<!--// Use the following variable to specify // the number of random wordsvar NumberOfWords = 17var words = new BuildArray(NumberOfWords)words[1] = "absorb"words[2] = "begin"words[3] = "collaborate"words[4] = "contribute"words[5] = "dance"words[6] = "dream"words[7] = "exchange"words[8] = "express"words[9] = "harmonize"words[10] = "inquire"words[11] = "investigate"words[12] = "paint"words[13] = "question"words[14] = "renew"words[15] = "ruminate"words[16] = "teach"words[17] = "venture"var words2 = new BuildArray(NumberOfWords)words2[1] = "attune"words2[2] = "cavort"words2[3] = "commune"words2[4] = "converse"words2[5] = "deepen"words2[6] = "drum"words2[7] = "expand"words2[8] = "exult"words2[9] = "ignite"words2[10] = "instigate"words2[11] = "jubilate"words2[12] = "ponder"words2[13] = "relax"words2[14] = "reveal"words2[15] = "sing"words2[16] = "transform"words2[17] = "wander"var words3 = new BuildArray(NumberOfWords)words3[1] = "awaken"words3[2] = "celebrate"words3[3] = "connect"words3[4] = "create"words3[5] = "delve"words3[6] = "envision"words3[7] = "experiment"words3[8] = "feast"words3[9] = "improvise"words3[10] = "invent"words3[11] = "listen"words3[12] = "ponder"words3[13] = "release"words3[14] = "risk"words3[15] = "strategize"words3[16] = "unfurl"words3[17] = "wonder"function BuildArray(size){    this.length = size    for (var i = 1; i <= size; i++){        this[i] = null}    return this}function PickRandomWord1(objRef) {	  // Generate a random number between 1 and NumberOfWords	  var rnd = Math.ceil(Math.random() * NumberOfWords)	  // 	  objRef.innerHTML= words[rnd]} function PickRandomWord2(objRef) {	  // Generate a random number between 1 and NumberOfWords	  var rnd = Math.ceil(Math.random() * NumberOfWords)	  // 	  objRef.innerHTML= words2[rnd]} function PickRandomWord3(objRef) {	  // Generate a random number between 1 and NumberOfWords	  var rnd = Math.ceil(Math.random() * NumberOfWords)	  // 	  objRef.innerHTML= words3[rnd]} //-->