I just started with java and I create a class Range() inside my superclass with a method inside makeRange but when I tried to access to that method throws an error. Whats wrong here?
Here is my code...
public class iAmRichard {
        class Range{
            int[] makeRange(int upper, int lower){
                int[] ary = new int[(upper - lower)+1];
                for(int i = 0; i > ary.length; i++ ){
                    ary[i] = lower++;
                }
                return ary;
            }
        }
    public static void main(String[] args) {
            int foo[];
            Range fui = new Range();
            foo = Range.(here do not apear makeRange method)