I started learning AngularJS but had a little problem.... What is wrong here ? I try to declare songlist as an array with Song Objects but get an error to use "="
import { Song } from './song.model';
export class Chart
{
id:number;
chartName: string;
img: string;
createDate:string;
songList[]: Song;
}