Statements

Statements often start with a keyword.

Semicolons separate statements.

Multiple spaces are ignored. So you can add white spaces to make code more readable. As example, avoid code lines longer than 80 characters.

Curly brackets are used for grouping statements into code block.

int [] myArray = {1,2,3,4,5};

for(int item  : myArray){
    System.out.println(item);
    ...
}