Make the simplest code unreadable

Just for fun I made a simple code, as unreadable as possible.

The result:

    public static void main(String[] args) {
        String txt = "";
        for(int i=0; i<6; i++){txt += txt .length() == 0 ? "h" : txt .length() == 2 ? "j" : i == 3 || i == 4 ? (txt .charAt(txt .length()-1) == ' ' ? "d" : " ") : i == 5 ? "å" : "e";}
        System.out.println(txt);
    }

I would love if you could make your own version, and see how bad it can get.