A program is to be written to simulate tossing of two six-sided dice. Each die is a small cube with each side having a different number of spots on it, ranging from one to six. Which of the following instructions will correctly generate random numbers to simulate the result of the tossing of two dice and assigning the value of the dice sum to the variable result? 3 var die 1 = Math.floor(Math.random() * 6+ var die2 - Math.floor(Math.random()*6+ var result - die 1 + die2; II. var result = Math.floor(Math.random() * 6 III. var result = Math.floor(Math.random() * 12 Math.floor(Math.random() * 6+1 I and Il only I only I, II, and III Ill only