Buenas
nunca haces la llamada a testFunction, el codigo deberia quedar asi:
Código Javascript
:
Ver originalvar testArray = new Array();
function testFunction () {
return testArray.push(Math.floor(Math.random() * (10 - 5) + 5));
}
testFunction(); <<<<<<<<<<<<<<<< FALTA ESTO
alert (testArray[0]);