1) Math 매서드
Math.random(): 0과 1사이의 랜덤한 숫자를 반환
Math.round(): 인자를 반올림
Math.ceil(): 인자를 올림(천장)
Math.floor(): 인자를 내림(바닥)
배열에서 랜덤한 값 뽑기
const array = ['red', 'blue', 'black'];
const chosen = array[Math.floor(Math.random() * array.length)];
console.log(chosen);
2) createElement(), appendChild()