Copying a JavaScript array

Question | May 15, 2017 | nextptr 

An array cities that has 4 elements is copied to a variable as shown:

var cities = ['Chicago', 'London', 'New York', 'Tokyo'];

var copyCities = cities;

Then another element is inserted into cities:

cities.push('Paris');

What are contents of copyCities now?