Lab 4.2 1. Create a form. 2. Add inputs: a text box for the user's name 5 checkboxes with descriptive adjectives button to "see results" 3. A JavaScript function to handle the button click. -called by buttons's onClick --checked boxes have an attribute "checked" Array: "list" of items to be stored. //declare and initialize an array var myArray = new Array(5); //an array of 5 items //set values for each item //set the first item to be 345 so store at position 0 myArray[0] = 345; myArray[1] = 12; myArray[2] = 65; ... myArray[123] = 0; var count = 0; var sum = 0; while(count <= 123){ document.writeln(myArray[count]); sum = sum + myArray[count]; count = count + 1; }