Write an expression trace for line 6 of the following code let a = 1; let b = 2; let c = 3; a = a + b; b = b * c + a; c = a + b / c + a * b; console.log(a, b, c);