// This is the starter code snippet. // Follow the notebook to finish it up! import java.util.Scanner; public class InputOutput { public static void main(String[] args){ double averageScore = 85.5; String studentFirstName = "Molly"; String studentLastName = "Huq"; System.out.println(studentFirstName + " " + studentLastName + " has a Score of " + averageScore); System.out.println("What do you want to update it to?"); // Our new string } }