You do not specify the desired distribution. For a normal distribution, use rnorm(). You will need to specify values for the number of observations, the mean and the standard deviation. For 50 values from a normal distribution with a mean of 100 and a standard deviation of 15 it would be:
rnorm(50, mean = 100, sd = 15)