04.09.2017, 21:20
Well you've declared FactSkins1 with 11 slots and you're trying to put 15 items into it. Also do not create a 2D-array if the second dimension is just going to be 1. Create a one-dimensional array instead and get rid of all the extra braces.
PHP код:
new sample[] = {
1,
3,
5,
7,
13
};