I have this struct after I dump it like this:
<cfdump var="#currentInfo.answers#">
How can I access the value inside the LIST?
I need to compare that value with another variable in the future to allow me to do certain operations.

I have this struct after I dump it like this:
<cfdump var="#currentInfo.answers#">
How can I access the value inside the LIST?
I need to compare that value with another variable in the future to allow me to do certain operations.

The code below ought to do it:
currentInfo.answers["F0FF5FDC-D2C3-4D0F-D7D2D2886D5B430d"].LIST
Since the value is dynamic you'll need something like this:
currentKey="F0FF5FDC-D2C3-4D0F-D7D2D2886D5B430d";
currentInfo.answers[currentKey].LIST;