Let's say I have the following code:
String a = " some texte";
String b = " text";
String c = "sf ";
String d = " kjel";
String e = "lkjl";
ArrayList<String> list = new ArrayList<String>();
// better way to do all these adds without having to type them all?
list.add(a);
list.add(b);
list.add(c);
list.add(d);
list.add(e);
How can I make this more efficient for both typing and computing?