javascript files /*
- Programming Quiz: First Expression (2-1)
- Write an expression that uses at least three, different, arithmetic operators
- to log the number 42 to the console. */
// this expression equals 4, change it to equal 42 console.log(4 + 5*8 - 2);