Hello!
These are the steps I have done so far:
To create the random numbers: rnorm(1000, mean = 5, sd = 10)
To create a variable: randomNumbers <- rnorm(1000, mean = 5, sd = 10)
To find the mean: mean(randomNumbers)
To find the max number within the 1000: max(randomNumbers)
Now step 5 is to add five to all the numbers?
(Sorry, I'm a first year Phd and just learning R. I truly appreciate any help!)