200
// What is the value of x after the following code executes?
let words = ['one', 'two', 'three'];
let x = words.forEach(function(word) {
return word.toUpperCase();
});
A) "ONE TWO THREE"
B) ["ONE", "TWO", "THREE"]
C) ["one", "two", "three"]
D) Undefined
D) Undefined