alwaysgoldiee9567 alwaysgoldiee9567 01-03-2024 Computers and Technology contestada BEGIN MAINCREATE myArray[] = {9, -2, 30, -3, 98, 12};CREATE max = array[0];FOR (CREATE i = 1, i < 6, i++)IF(myArray[i] > max)max = myArray[i]END IFEND FORPRINT(""The maximum value is "" + max);END MAINWhat is the length and size of myArray?