로또뽑기 & 명언랜덤을 만들어봤어요 ! 전체 소스는 요기 두소스의 body부분을 볼게요 오늘의 명언 로또번호 번호뽑기 랜덤뽑기 명언 보기 스크립트를 볼게요 let quonte= document.querySelector(".wise__quote"); let author= document.querySelector(".wise__author"); let wiseAll=[]; //모든 퀴즈 정보 저장 let item =[]; const dataQuestion = () => { fetch("json/dummy01.json") //이파일을 가져올거야 .then(res => res.json()) //이파일은 json이야 객체로바꿀꺼야 .then(items=> { //객체를 한번더 변경할거야 //랜덤한 번호를 가져옴 ..