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: