What will be the result after calling shift and push methods on an array

Question | May 11, 2017 | nextptr 

What will be the contents of array - rivers - after calling shift and push methods on it:

var rivers = ['Congo','Amazon','Nile','Yangtze'];

rivers.push(rivers.shift());

// what is in rivers now?

Select the answer from given choices below: