JSFiddle - React, Tailwind, and code Playground

HTML

<div id="div_pergunta" style="background-color: blue">
    teste<br />
    teste<br />
    teste<br />
</div>

JavaScript

function embaralhar_efeito(o){
        for(var j, x, i = o.length; i; j = Math.floor(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x);
        return o[0]; //retorna somente o 1 valor.
    }

    var array_efeitos = ['slideToggle','slideDown','slideUp','fadeToggle','fadeTo','fadeIn'];
    var efeito_toogle = embaralhar_efeito(array_efeitos);

$('#div_pergunta')[efeito_toogle](300);