Função Javascript precisa permitir números, ponto e vírgula

Eu preciso criar uma função para permitir números ponto e vírgula. Então, alguém corrige a seguinte função

function on(evt) {
  var theEvent = evt || window.event;
  var key = theEvent.keyCode || theEvent.which;
  key = String.fromCharCode( key );
  var regex = /[0-9]|\./;
  if( !regex.test(key) ) {
    theEvent.returnValue = false;
    if(theEvent.preventDefault) theEvent.preventDefault();
  }
}

questionAnswers(6)

yourAnswerToTheQuestion