Select all the lines which create a variable.

int myAge = 17;String myName = "Marty";myNumber = 4815162342;

Fantastic! We create a variable using a type and a name. By adding a = and a value, we give it a value at the same time.

Oh noes! We create a variable using a type and a name. By adding a = and a value, we give it a value at the same time.