#include <stdlib.h>
#include <string>
#include <ctime>
using namespace std;
// получаем рандомный индекс
int getIndex() {
srand((unsigned) time(0));
return ((rand() % 1000));
}
int main() {
string arr[1000] = { };
int index = getIndex();
arr[index] = "value";
return 0;
}