<script type="text/javascript" charset="utf-8">
var counter = 1;
setInterval(function(){
document.getelementById("radio" + counter).checked = true;
counter++;
if(counter > 3){
counter = 1;
}, 2000);
</script>
Can someone help me figure out what's wrong with this code, my ide says unknown token ","