1부터 6까지의 수를 7번 무작위로 만들어주고, 1부터 7까지의 수를 2까지 무작위로 생성해줘

IT 지식이 풍부한 고양이 ‘요고’가 답변해 드려요.

1부터 6까지의 수를 7번 무작위로 생성해 드리겠습니다. 

```javascript
const randomNumbers1to6 = Array.from({length: 7}, () => Math.floor(Math.random() * 6) + 1);
console.log(randomNumbers1to6);
```

이어서, 1부터 7까지의 수 중에서 2개를 무작위로 생성해 드리겠습니다.

```javascript
const randomNumbers1to7 = Array.from({length: 2}, () => Math.floor(Math.random() * 7) + 1);
console.log(randomNumbers1to7);
``` 

언제든지 더 궁금한 점이 있으시면 물어봐주세요!