Write your question here.Create a C++ program that accepts two numbers as the first entry in a Fibonacci sequence and subsequently the two numerical values are passed to function where a twelve element array is populated with the Fibonacci sequence that starts with those two entries. Finally the populated twelve element array is passed to another function that displays the contents of the populated array. (The Fibonacci sequence is an unending series of numbers in which each number except for the first two is the sum of the preceding two, e.g. 0 , 1, 1, 2, 3, 5, 8 ...)