Can't figure out how to fix. I am very new to Java.
import java.util.Scanner;
public class Greetings {
public static void main(String[] args) {
System.out.println("Hello there, what is your name? ");
Scanner input = new Scanner(System.in);
String = input.nextLine();
System.out.println("Well then, welcome to Java" + input);
}
}