It decided to not work because it claims there is a missing semi-colon.
obj1_1.sqf:
if not isServer then exitWith {};
_crateList = [AA1,AA2,AA3,AA4,AA5,AA6];
// select two random crates and remove the others from the list...
_rnd = floor(random(count _crateList));
_crate = _crateList select _rnd;
_crateList = _crateList - [_crate];
_rnd = floor(random(count _crateList));
_crate = _crateList select _rnd;
_crateList = _crateList - [_crate];
// ...and delete the rest
{ deleteVehicle _x } forEach _crateList;
error msg:
if not isServer then exitWith {};
_crateList = [AA1,AA2,AA3,AA4,AA5,A>
Error position: <{};
_crateList = [AA1,AA2,AA3,AA4,AA5,A>
Error Missing ;