MATLAB: How to access the last values of a list using end

list

I have a list, let's say length(list) = 40 how can I access the value which indice is 37 using end ?
(in my case I don't know the length of the list,that was just an example)
Thank you in advance for your answers.

Best Answer

list(end-3)