Hello All,
I figured out a work around for this and it is to use the expression builder.
here is the different expressions that I use:
first(triggerBody()?['cells'])?['value'] (first value from the array)
first(skip(triggerBody()?['cells'],1))?['value'] (Second value from the array)
first(skip(triggerBody()?['cells'],2))?['value'] (Third value from the array)
And you can just keep building this out as needed depending on how big your array is.