Is this for a school project (as part of a course)?
If so, then maybe we can walk you through the example and provide assistance along the way.
So open LV and open a blank vi that you'll save as the filename that you want.
Go to the block diagram and familiarize yourself with the Tools palette as well as the Functions Palette.
If you have newer LV versions (LV7 & up) you can right click on a blank area of the block diagram and the FUnctions Palette will appear.
The 1st thing is to generate the random numbers. This function is located under "Numeric" and the icon is "2-dices". That will generate a decimal number between 0 & 1. Multiply by 100 and you have your random range.
You will need a couple of loops.
The fist loop "FOR" can contain the random number generator and use it to generate the 3 numbers. You can output an array of 3 numbers, then do the avg and place the avg # the array.
You also need a while loop which contains a wait x msec. The value of x depends on how accurate you want to be . There are different ways of doing this, so I'll just describe the simplest one. Place a constant 1000 to the timer inside the while loop which contains the for loop. Place a stop button on the front panel to stop the loop. It is wired to the loop control (stop sign).
Create a display to show the numbers that are generated & their avg. Once you achieve this, writing to the file will be the next step. There are also some different approaches to this. Get to this point first, then we'll help for the file writing portion, which is actually quite simple.
JLV