function presentCount() {
counter="";
for (i=0; i<10; i++) {
    counter=counter + " " + i;
}
alert (counter);
}
