🔻나의 풀이
function solution(n) { let array = []; for(let i = 1; i <= n; i+=2) array.push(i); return array; }