Consider the Fibonacci sequence 1,1,2,3,5,8,13,21,34,55,89,…. .The first two numbers are 1 and 1. When you add these numbers youget 2 = 1+1, which becomes the third number in the sequence. Whenyou add the second and third numbers, you get 3 = 1+2, whichbecomes the fourth number in the sequence. When you add the thirdand fourth numbers, you get 5 = 2+3, which becomes the fifth numberin the sequence; and so on to generate the sequence. Write a shortExcel program that generates the first 50 numbers of the Fibonaccisequence, using 1 and 1 as the first two numbers to start thesequence. Put these numbers in Column A in Excel. Also, in the nextcolumn in Excel (Column B), divide each number in the sequence bythe previous number in the sequence. This column is a new sequenceof numbers. Start Column B in Row 2. To what number does thesequence of the quotients in Column B converge? Use the 2-D BarChart tool in Excel to graph the first 10 ratios in Column B