try to use ArcGIS Arcade Script to create geometries. However, even take the sample code provided by ESRI and run it in Arcade playground, it returns me the error "Execution Error:Cannot create Geometry in this SpatialReference. Engine is using a different spatial reference."
The code attached below:
var pointJSON = {'x' : -118.15, 'y' : 33.80, 'spatialReference' : {'wkid' : 4326}};
Point(pointJSON)
What's going on???