## Reverser ### 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 - [devdocs.io/javascript/global_objects/array/reverse](https://devdocs.io/javascript/global_objects/array/reverse) ### Code provided > all code provided will be added to your solution and doesn't need to be submited. ```js Array.prototype.reverse = undefined ```