# Display a selection list In this page, you'll expand the Tour of Heroes app to display a list of heroes, and allow users to select a hero and display the hero's details.
For the sample app that this page describes, see the .
## Create mock heroes You'll need some heroes to display. Eventually you'll get them from a remote data server. For now, you'll create some _mock heroes_ and pretend they came from the server. Create a file called `mock-heroes.ts` in the `src/app/` folder. Define a `HEROES` constant as an array of ten heroes and export it. The file should look like this. ## Displaying heroes Open the `HeroesComponent` class file and import the mock `HEROES`. In the same file (`HeroesComponent` class), define a component property called `heroes` to expose the `HEROES` array for binding. ### List heroes with `*ngFor` Open the `HeroesComponent` template file and make the following changes: * Add an `

` at the top, * Below it add an HTML unordered list (`