Question: In the following code, the variable `fruit` has been assigned a value of apple. How would you change the value to plum?

  1. `let fruit = 'plum'`
  2. `var fruit = 'plum'`
  3. `const fruit = 'plum'`
  4. `fruit = 'plum'`

Answer: The correct answer of the above question is Option D:`fruit = 'plum'`