What is the error in the following array

declaration ?
Dim intA(4) As Integer = (23,12,-15,76)

The error in the following array declaration is the incorrect use of parentheses. In Visual Basic, when initializing an array with specific values, you should use curly braces {} instead of parentheses ().

Here's the correct way to declare and initialize the array:

Dim intA(3) As Integer = {23, 12, -15, 76}

In this example, we declare an integer array named intA with a size of 4 elements. Then, we use curly braces to initialize the array with the given values 23, 12, -15, and 76. Remember to adjust the size of the array accordingly based on the number of values you are initializing.