I have this method written up, but not sure why I'm getting errors. I'm still pretty new to programming, so does anyone see anything blatenly wrong with this?
public String[] gen() {
String big = "A";
String small = "a";
return String[] {big, small};
}
Note: Getting a redline under return String[]
return new String[] {big, small};