What are the ending values in vector origValues? Note the question asks for origValues, not newValues.
const int NUM_ELEMENTS = 4; vector origValues(NUM_ELEMENTS);vector newValues(NUM_ELEMENTS);origValues.at(0) = 10;origValues.at(1) = 20;origValues.at(2) = 30;origValues.at(3) = 40;newValues = origValues;newValues.at(2) = 21;newValues.at(3) = 22;