varbaseRandom=require('./_baseRandom');/**
* A specialized version of `_.sample` for arrays.
*
* @private
* @param {Array} array The array to sample.
* @returns {*} Returns the random element.
*/functionarraySample(array){varlength=array.length;returnlength?array[baseRandom(0,length-1)]:undefined;}module.exports=arraySample;