Write a MATLAB code that simulates a throw of a die 10 times…

Write a MATLAB code that simulates a throw of a die 10 times. You must use a loop and condition(s). You are only allowed to use “rand”. The rand function without parentheses returns a random scalar drawn from the uniform distribution in the interval (0, 1).    

Debug the following program, so that the appropriate output…

Debug the following program, so that the appropriate output can be obtained.The current output is;1 : 1 : 2 : 4 : 8 : 16 : 32 : 64 : 128 : 256 :The appropriate out is;1 : 1 : 2 : 3 : 5 : 8 : 13 : 21 : 34 : 55 :// We want to display first 10 Fibonacci numbers.      for (i = 1; i