Enter the value of the currentLength variable after the following code is executed:
StringBuilder firstBuilder = new StringBuilder("Java");
firstBuilder
.append("J")
.append("a")
.append("v")
.append("a");
firstBuilder.deleteCharAt(0);
StringBuilder secondBuilder = new StringBuilder(firstBuilder);
secondBuilder.append(firstBuilder);
int currentLength = secondBuilder.length();