1 <form><input type=radio
name=
"one">One
2 <input type=radio
name=
"one">Two
3 <input type=radio
name=
"one">Three
9 <input type=radio
name=
"one">One
10 <input type=radio
name=
"one">Two
11 <input type=radio
name=
"one">Three
15 document
.forms
[1].appendChild(document
.forms
[0].firstChild
); document
.forms
[1].appendChild(document
.forms
[0].firstChild
);
16 document
.write("The count of the # of elements in form 1 should be 2 and in form 2 should be 4. The count in form 1 is "
17 + document
.forms
[0].elements
.length
+ ", and the count in form 2 is " + document
.forms
[1].elements
.length
);