Explore Library
Code QuizBeginner

Invalid Identifier

Find the illegal variable name in this code.

Codejava
public class Ids {
    public static void main(String[] args) {
        int 2ndValue = 5;
        System.out.println(2ndValue);
    }
}

What is the bug in this code?