Call the append() method or the push_back() method or use the << operator

Qt Code:
  1. ArrayX << x;
  2. ArrayY << y;
To copy to clipboard, switch view to plain text mode 

Might be even better to have only one list and have it store a structure that holds two values, e.g. a list of QPoint

Cheers,
_