import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class ValamiService { fruits = [ 'alma', 'körte', 'barack', 'szilva' ]; constructor() { } getFruits() { return this.fruits; } }