Question #99

Author: admin
tags: Linux  
# ??
echo ${cities[2]} # Prague
Insert a proper line to create indexed array in the shell script:
cities=[London Berlin Prague]
cities = "London", "Berlin", "Prague"
cities (arr) = { London, Berlin, Prague }
cities=(London Berlin Prague)
cities=[London, Berlin, Prague]
Rate the difficulty of the question:
easyhard