LEsson 12 HELP

On lesson 12 it won’t work, this is what i wrote

public class Generalizations {
public static void main(String args) {

    boolean isComplete = true;
    int awesomeLevel = 121 ;
    int epicLevel = awsomeLevel * 2;        
    /*System.out.println(epicLevel);*/
     //hey there

}

}

Hi, dracoslayer,

Check the spelling in this line; you have awsomeLevel, which is not the same name that was declared earlier…

int epicLevel = awsomeLevel * 2;

Thanks XD Spelling isn’t my strong point