Como Gerar Numeros Aleatorios Em Javascript A parttir de uma funo

function getRandom(max) {
    return Math.floor(Math.random() * max + 1)
}
Ageu Menezes Costa