The push() adds elements to the end of an array and returns the new length of the array. ... The concat() method is used to merge arrays. Concat does not change the existing arrays, but instead returns a new array.
배열을 mutate(변질) 하면 안된다. 그래서 변질되지 않는 방법을 사용해야 한다
그래서 우리는 filter,includes등을 사용하는게 좋다.