Write a VB.Net program to check if a system has a sequence of four consecutive integers within its list of 120 recorded ID numbers.
When writing your program you should assume:
readings that contains the 120 integer ID numbersreadings(0) contains the first value and readings(119) contains the last valuereadings are already stored in ascending numerical ordersequenceFound that has an initial value of False.Your program should set sequenceFound to True if there is a valid run of four consecutive integers (for example: 45,46,47,4845, 46, 47, 4845,46,47,48).
You should use meaningful variable name(s) and VB.Net syntax in your answer.