Upon extracting data from a website, a developer saves it in three variables: "FirstName", "LastName", and "City". The developer intends to store these three String variables in a fixed-size data structure called "UserData", to be utilized later within another workflow in the process.
Considering best practices, which data structure and assignment should be used?
- UserData is of type List<Object>
UserData = New List(Of Object) ({ FirstName, LastName. City }) - UserData is of type List<String>
UserData = New List(Of String) ({ FirstName, LastName. City }) - UserData is of type String[]
UserData = {FirstName, LastName, City} - UserData is of type Object[]
UserData = {FirstName, LastName, City}
Reveal Solution Next Question