const array1 = ['one', 'two', 'three']; console.log('reversed:', array1.reverse()); // Note that reverse() is destructive -- it changes the original array. console.log('array1:', array1); // expected output: "array1:" Array ["three", "two", "one"]