Could somebody help me make this program compile...
import java.lang.Object;


public class Month
{
// instance variables
private int start;
private int end;
private String name;
private String months = "January " +
"February " +
"March " +
"April " +
"May " +
"June " +
"July " +
"August " +
"September" +
"October " +
"November " +
"December ";

/**
* Constructor for objects of class Month
*/
public Month(int x, int y)
{
//instance variables
start = x;
end = y;
}

public String getName()
{
name = months.substring(int start,int end);
return name;
}
}



This program is suppose to give the name of the month by putting in the right start number and end number in the substring method.