i like understanding how things work and i can't seem to find a simple explanation with google.
public class Understanding { 
    public int[] array = new[] {5, 6, 7};
    public int x = 5;
    public int y = 6;
    public int z = 7;
}
for example, if i access array[0] how is that done compared to just accessing x?
 
    