//Math object can not be changed
console.log(Math.PI);
function randomSelection(arr){
let index = Math.floor(Math.random()*arr.length);
return arr[index];
}
let happiness = ['Hope','Joy','Peace','Love','Kindness','Puppies','Kittens','Tortoise'];
for (i=0; i < 8; i++){
console.log(randomSelection(happiness));
}