## Reverse ### Instructions Create a `reverse` function that works on both arrays and strings. Like `[].reverse()` but working also for strings (without using the actual method) ### Notions - https://devdocs.io/javascript/global_objects/array/reverse ### Code provided ```js Array.prototype.reverse = undefined ```