In the following loop structure, the  boolean expression is…

In the following loop structure, the  boolean expression is (balance < targetBalance). The  variable targetBalance in the expression is  ________________. while(balance < targetBalance){    years++;     double interest = balance * rate / 100;     balance = balance + interest; }