随机数,从给定的范围中获取。
static int randomNextIntFromList(List<int> list) { var ran = Random(); return list.elementAt(ran.nextInt(list.length)); }