Consider a set of Random numbers from the standard normal distribution in a vector-like X.X <- rnorm(50) This code will produce a single sample of size of 50 random numbers from the standard normal distribution. Please help in generating four histograms using R based on information provided in the following exercise. For each step, you will need to submit both the sample code and an output diagram. Provide screenshots of the sample codes and outputs for each step, and submit all four steps in one PDF file. Step 1Plot a histogram of 1000 random numbers from the standard normal distribution. (Keep breaks=50 and the Z Score=1.669) Step 2Now take 1000 samples of size 20 from the standard normal distribution at the same time. Use a matrix, where each row of X is a sample of size 20 from the standard normal distribution with 1000 rows.Step 3Repeat Step 1 with random numbers from an exponential distribution. (Take lambda=0.6)Step 4Repeat the steps in Step 2 with random numbers from an exponential distribution. (Take lambda=0.6) Provide some explanation and Screenshots for all the above steps