Question: Which line would you add to this code to add "Cosmos" to the list of currencies using JavaScript?
- `currencies.push("Cosmos");`
 - `Array.append("Cosmos", currencies);`
 - `currencies.add("Cosmos");`
 - `currencies(2) = "Cosmos";`
 
Answer: The correct answer of the above question is Option A:`currencies.push("Cosmos");`