You learned to create and access arrays with bracket notation. You used push(), pop(), shift(), and unshift() to add and remove elements.
You transformed arrays with map(), filter(), and reduce(). You searched with find(), findIndex(), and includes(). You sorted with custom compare functions.
Remember: sort(), reverse(), and splice() mutate the original. map(), filter(), slice(), and spread create new arrays.