Create a variable numbers_b and set it equal to a random sample of twelve numbers within range(1000). code example
Example: n random numbers python
>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]
>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]