哪里出现错误了,怎么找也找不出来?<html>
   <head>   </head>   <body onload = "chooseQ()">      <div id = "question1">
      </div>      <div id = "question2">
      </div>      <script type="text/javascript">
         <!--         var count = ["1","2"]
         var controlNum;         function chooseQ(){
            var arr = new Array();
            var num;
            for(var i = 0, j; i < 2; i++){
               num = Math.floor(1 + Math.random() * 3);
               for(j = 0; j < arr.length; j++){
                  if(arr[j] == num)
                  break;
               }
               if(j == arr.length){
                  arr[j] = num;
                  printQ(num);
                  controlNum = i;
               }
               else{
                  i--;
               }
            }
         }                function printQ(n){
            switch (n){               case 1:
                  document.getElementById("question" + count[controlNum]).innerHTML 
                  = "<form id = 'Q1' action = ''>"
                  + "<p>"
                  + "The ___ is just around the corner and you won’t miss it." 
                  + "<br /><label><input type = 'radio' name = 'radiobutton' value = 'A'>"
                  + "A.bicycle's shop" 
                  + "</label><br /><label><input type = 'radio' name = 'radiobutton' value = 'B'>"
                  + "B.bicycle shop" 
                  + "</label><br /><label><input type = 'radio' name = 'radiobutton' value = 'C'>"
                  + "C.bicycles shop" 
                  + "</label><br /><label><input type = 'radio' name = 'radiobutton' value = 'D'>"
                  + "D.bicycles' shop" 
                  + "</label><br /></p></form>";  
               break;                  case 2:
                  document.getElementById("question" + count[controlNum]).innerHTML 
                  = "<form id = 'Q2' action = ''>"
                  + "<p>"
                  + "His daughter is always shy in ___ and she never dares to make a speech to ___." 
                  + "<br /><label><input type = 'radio' name = 'radiobutton' value = 'A'>"
                  + "A.the public…the public" 
                  + "</label><br /><label><input type = 'radio' name = 'radiobutton' value = 'B'>"
                  + "B.public…the public" 
                  + "</label><br /><label><input type = 'radio' name = 'radiobutton' value = 'C'>"
                  + "C.the public…public" 
                  + "</label><br /><label><input type = 'radio' name = 'radiobutton' value = 'D'>"
                  + "D.public…public" 
                  + "</label><br /></p></form>";  
               break;                   case 3:
                  document.getElementById("question" + count[controlNum]).innerHTML 
                  = "<form id = 'Q3' action = ''>"
                  + "<p>"
                  + "Rose was wild with joy ___ the result of the examination." 
                  + "<br /><label><input type = 'radio' name = 'radiobutton' value = 'A'>"
                  + "A.to" 
                  + "</label><br /><label><input type = 'radio' name = 'radiobutton' value = 'B'>"
                  + "B.at" 
                  + "</label><br /><label><input type = 'radio' name = 'radiobutton' value = 'C'>"
                  + "C.by" 
                  + "</label><br /><label><input type = 'radio' name = 'radiobutton' value = 'D'>"
                  + "D.as" 
                  + "</label><br /></p></form>";
               break;    
            }
         }   
         //-->
      </script>      
   </body>
</html>