Problem when using dynamic array

Hello! I want to create a program that reads different colors from a website and then puts them into a list.
The problem is that it only accepts one element in the list. These are inside while true loop also.

Output :
List of lastColor:
Black
List of lastColor:
Red
List of lastColor:
Yellow

Expected output:
List of lastColor:
Black
List of lastColor:
Red
Black
List of lastColor:
Yellow
Red
Black


Hi,

Can you try to move Assign activity: listColor = New List(Of String) just before While Activity?

Regards,

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.