Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Arrays Creation Create an array literal

how can i solve it?

i do not know hoe to solve it

TeachersExample.java
public class TeachersExample {

  public String[] getTeachersInArrayLongForm() {
    String[] teachers = new String[3];
    teachers[0] = "Jay";
    teachers[1] = "Dave";
    teachers[2] = "James";
    return teachers;
  }

  public String[] getTeachersAsArrayLiteral() {
    // TODO: Replace null with an array literal that matches the long form above
    String[0,1,2] getTeachersAsArrayLiteral = {"Jay,Dave,James"};
    String[] teachers = null;
    return teachers;
  }

}

1 Answer

You are doing it quite right

  • firstly there is no need of String[0,1,2] , String[] is fine. It will automatically assign it in ordered manner
  • second you don't need getTeachersAsArrayLiteral instead just use variable teachers and return
  • and don't null this statement again.

Hope it helps