// Program name: City Array // Purpose: Enter five cities and display the array's content // Author: Courtney Credle // Date last modified: 18-July-2017 START Declare citynames(5) as string Declare index as integer For (index=0; index<5; index++) { INPUT(citynames(index)) } For (index=0; index<5; index++) { DISPLAY(citynames(index)) } END // Thank the user and end the program Display "Thank You"