How to add a random value to the Button in unity 4.6?

Hello,
I want to add value to my 4 buttons, 3 with random value and 1 with right answer.
Please help me!
thnx a lot!

Just set the text of the button to a random value at run time in a script.

Button.text = “” + Random.Range(float , float);

thank you!