_.sample(collection)
从集合中随机获得元素
collection (Array|Object)
要取样的集合
返回随机元素
_.sample([1, 2, 3, 4]); // => 2