Undeclared identifier: 'ParseJSONValue'

Hello,
after updating to WEB Core 2.0.5.0 I get the Undeclared identifier: 'ParseJSONValue' in
ar := TJSONArray.ParseJSONValue(atext) as TJSONArray;

Had to uninstal version 2.0.5.0, installed version 2.0.4.0 and the program compiles again. (Delphi 11 Update 1)
Any suggestions?

Change your code to:
ar := TJSONArray(TJSONObject.ParseJSONValue(atext));

Thank you Bruno. It works!