// STATEMENT: Code that performs actions (generally something that ends in ";"
// example:
const str = `String assigned to str`;
// EXPRESSION: Code that produces a value
// example(s):
3 + 4
1991
true && false && false
let x, y, z; // Statement 1
x = 5; // Statement 2
y = 6; // Statement 3
z = x + y; // Statement 4