const array1 = ['one', 'two', 'three']; // expected output: "array1:" Array ["one", "two", "three"] const reversed = array1.reverse(); // expected output: "reversed:" Array ["three", "two", "one"]