Command Line Arguments

When you run a program like so

java src/Main.java

Anything you put to the right of src/Main.java will be available to your program as a "command line argument."1

java src/Main.java example
1

They come from the command line and they are arguments to your program.