1. cannot find symbol2. non-static method play() cannot be referenced from a static context3. incompatible types : java.util.setcannot be converted to java.lang.Integer 1. 해당 식별자의 의미를 이해하지 못함. => 식별자 오류 2. 정적 메서드나 블록에서 정적이 아닌 메서드를 호출하려고 할 때 오류 발생 3. 자료형 변환이 잘못되서 그렇다...? 1. 몇시간 동안 하다보니 선언해놓은 이름을 헷갈려서 잘못 적어서 오류가 났다. 2. play를 호출하려고 하는데 계속 안돼서 이것저것 찾아봤더니 play()로 해야했다.....이걸 놓치다니..!! 3. 제일 어려웠던 부분 .a..