Can i get the animation in certain element?

I’m new in unity and still learning the unity basics.

When i’m trying to learn the animation in unity, there are 2 component (animation and animator) that can be used for making animation. What is the better component between these 2?

also, in animation component, there’s animation element [0 → …]. Can i get the animation in certain element (e.g. animation in element 2 only) with script?

149730-capture-1.png

Sorry if my question is silly and my grammar is bad

Hey Volta
Animation Component Is Older Way Of Controlling The Animation Playing In Unity!(Unity 5 I Think)
Animator And Mecanim System Is Newer Way
So Which One To Use?
Depends On Your Need// Try Both And See Which Is Good For Your Purpose!
Yes Your Can
Just By

Animation anim=GetComponent();
anim.GetClip(“NameOfYourClip”);