This is my ArrayCollection I want to remove "Label:"Taxes", Value:2000" line from this arrayCollection. Guys how can do that without using forloops or using forloop?
public var expenses:ArrayCollection = new ArrayCollection([
{Label:"Taxes", Value:2000},
{Label:"Rent", Value:1000},
{Label:"Bills", Value:100},
{Label:"Car", Value:450},
{Label:"Gas", Value:100},
{Label:"Food", Value:200}
]);