Question: In the following code, the variable `fruit` has been assigned a value of apple. How would you change the value to plum?
- `let fruit = 'plum'`
 - `var fruit = 'plum'`
 - `const fruit = 'plum'`
 - `fruit = 'plum'`
 
Answer: The correct answer of the above question is Option D:`fruit = 'plum'`