Create three (3) one-dimensional arrays: Item Number, Quantity-on-hand and Unit Cost for 15 items. Input data into all the arrays. After the data is entered, read an arbitrary number of records containing an item number and quantity-ordered. If the quantity ordered for the item is available, display the item number and total cost of quantity ordered. Also update the quantity-on-hand array by subtracting the quantity ordered from the quantity-on-hand for that item. If the quantity ordered were more than the quantity-on-hand, display item number and message stating that the item Number is under stocked and unavailable for shipment. After all records has been processed, output item number of all items that must be reordered and the reorder quantity for each. The reorder point for an item number is when the quantity-on-hand falls below 40.Use item number as -1 to signal the end of input.