Preview:
import java.util.ArrayList;
import java.util.List;

public class Main {
    public static void main(String[] args) {

        List<String> koelPages = new ArrayList<>();

        koelPages.add("RegistrationPage");
        koelPages.add("LoginPage");
        koelPages.add("HomePage");

        System.out.println(koelPages);
    }
}
// Output: [RegistrationPage, LoginPage, HomePage]
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter