Answer:
Replace 
/* Your solution goes here */ 
with
if (bagOunces < 2) { 
 System.out.print("Too Small"); 
} 
else if(bagOunces > 10) { 
 System.out.print("Too Large"); 
} 
else { 
 System.out.print((bagOunces * 6)+" seconds"); 
}
Step-by-step explanation:
This line checks if bagOunces is less than 2;
if (bagOunces < 2) { 
If yes, the string "Too Small" is printed
 System.out.print("Too Small"); 
} 
This line checks if bagOunces is greater than 10
else if(bagOunces > 10) { 
If yes, the string "Too Large" is printed
 System.out.print("Too Large"); 
} 
The following condition is executed if the above conditions are false
else { 
This multiplies bagOunces by 6 and adds seconds 
 System.out.print((bagOunces * 6)+" seconds"); 
}