// getRandom(myArr) returns a random element from the array myArr
function getRandom(myArr) {
	return myArr[Math.floor(Math.random()*myArr.length)];
}