All images are same when I iterate on list of blog featured images to fetch featured image

@Jasoliya

All images are same when I iterate on list of blog’s featured images to fetch featured image on a list.

i have used this code- (green color), also see the image below which is output—

<div class="sidebar-right">
              <h3>Recent Blogs</h3>
<!--              -----------------sidebar start---------------- -->
        
<ul>
    {% for blog in blogs.blog-pages.articles limit:10 %}
      
      <img src="{{ article.image.src | img_url: 'medium' }}">
  
      <li><a href="{{ blog.url }}">{{ blog.title }}</a></li>
    {% endfor %}
  </ul>
            

<!--              -----------------sidebar end--------------------------- -->
           </div>

You have used different variable,

replace with this

thanks it worked..