[lang-ref] ( push_item ) ( swift )

@Test func pushItem() {
	// append
	var items = ["A", "B", "C", "D", "E"]

	items.append("F")

	#expect(items == ["A", "B", "C", "D", "E", "F"])
}