Is there a way to access velocity array element by a key? For example, I want to access the first element of the array in this code:
#set($blogPosts = $core_v2_blogPost.List("%{ BlogId = 4, IncludeSubGroups = 1, IncludeUnpublished = 0, PageIndex = 0, PageSize = 7, SortOrder = 'Ascending }")) #set($blogPosts = $core_v2_utility.AsArray($blogPosts)) <script>console.log($core_v2_utility.ToJson($blogPosts[0]);</script>