Would you forgive me if I told you I was an idiot? Sorry aha!
Once I've swopped the value, do I need to remove it from the array and find the next highest value? Like.. It needs to do this 26 types (to go through each number) so for example:
Array 1:
10
20
40
70 -> found and swopped
Array 2:
5
3
10
18 -> found and swopped
2
and then it would do:
Array 1:
10
20
40 -> found and swopped
Array 2:
5
3
10 -> founded and swopped
2
Until all the elements are found?
Thanks so much!