✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following code snippet:
var
arrNumbers: array[0..4] of integer;
i: integer;
begin
for i := 0 to 4 do
arrNumbers[i] := i * 3 + 2;
end;
What values will be stored in the arrNumbers array after the code execution?