In the for loop video you use the + operator on KeyCode.Alpha1.
i.e. KeyCode.Alpha1 + index
KeyCode.Alpha1 is an object though, so I assume that this is overloading the + operator and the operation is defined within whatever class KeyCode.Alpha1 is an instance of.
Am i correct?