Problem Description์ ์๊ฐ ๋ด๊ธด ๋ฆฌ์คํธ num_list๊ฐ ์ฃผ์ด์ง ๋, num_list์ ์์ ์ค ์ง์์ ํ์์ ๊ฐ์๋ฅผ ๋ด์ ๋ฐฐ์ด์ return ํ๋๋ก solution ํจ์๋ฅผ ์์ฑํด๋ณด์ธ์. Restrictions1 ≤ num_list์ ๊ธธ์ด ≤ 1000 ≤ num_list์ ์์ ≤ 1,000 Input/Output Example์ ์ถ๋ ฅ ์ #1 [1, 2, 3, 4, 5]์๋ ์ง์๊ฐ 2, 4๋ก ๋ ๊ฐ, ํ์๊ฐ 1, 3, 5๋ก ์ธ ๊ฐ ์์ต๋๋ค.์ ์ถ๋ ฅ ์ #2 [1, 3, 5, 7]์๋ ์ง์๊ฐ ์๊ณ ํ์๊ฐ ๋ค ๊ฐ ์์ต๋๋ค. My solutionfunction solution(num_list) { let result = [] const even = num_list.filter((x) =..