function $random(min, max){
    return Math.floor(Math.random() * (max - min + 1) + min);
};
function getRandom(arr) {
    return arr[$random(0, arr.length - 1)] || null;
}

