what can be used instead of new[]?

You can't do it because its not C/C++.

int foo[10]; with give you an array of ten int's. Do not use new() on the Arduino until you understand C/C++ and even then think twice!.

Mark