When doing this
String ids[] = new String[25];
String ids[0] = 21806000403720;
I get this
java:1003: integer number too large: 21806000403720
String ids[0] = 21806000403720;
No matter if I change the variable type to a Long or double.. I still get the same response. I'm needing to hardcode about 20 numbers of that size into an array, but unsure how to do so, since the values seem to be too large.
Thanks