1std::vector<unsigned int> array;
2
3// First argument is an iterator to the element BEFORE which you will insert:
4// In this case, you will insert before the end() iterator, which means appending value
5// at the end of the vector.
6array.insert(array.end(), { 1, 2, 3, 4, 5, 6 });