let source = [|(CocaCola, bigBottle); (CocaCola, smallCup); (Tuborg, smallCup)|]
//the method can't store the updated array.
let mkOrder (dr:liquid ,cont:Containment) = Array.append source [|(dr, cont)|]
Hello I have a method here to append a new item to the source array. However, the method doesn't store the updated array and thus, only works once I've tried multiple different but none of them has worked.