When I run the code it returns the following message: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1 at com.codegym.task.task15.task1527.Solution.main(Solution.java:34) Edit: I changed lines 31-35 to:
for (int i = 0; i<parts2.length; i++){
          String[] parts3 = parts2[i].split("=");
          if (parts3.length ==1)
          parameters.add(parts3[0]);
          else{
              parameters.add(parts3[0]);
              values.add(parts3[1]);
          }
      }
The code seems to run fine for the following input: http://codegym.cc/alpha/index.html?obj=3.14&name=Amigo But the same conditions are still not passing