[lang-ref] ( get_nth_element ) ( bash )

@test "get nth element" {
	# ${items[n]}
	items=(A B C D E)
	[ "${items[2]}" = "C" ]
}