I have two arrays:
float [] E;
float [] Location;
The elements in array E are the following: {1900, 16400, 77666, 8000, 13200, 15600}
The elements in array Location are {Birmingham, Blackburn, London, Luton, Manchester, Newcastle}
These data have been extracted from my database where they are associated, meaning:
Birmingham - 1900
Blackburn - 16400
London - 77666
Luton- 8000
Manchester-13200
Newcastle-15600
I want to be able ensure that the locations are associated to the right data as I have shown above if that makes sense. Is there a way of doing that?
Thanks In Advance!
Locationvariable.