
/* Select a random element from an array, returning null if the array is empty */
function selectRandomElement(array) {
	if (array.length == 0) return null;
	var rnd = Math.floor(Math.random() * array.length);
	return array[rnd];
}