How to beacon Dynamic data?

I am using Nrf Connect SDK version 2.3.0. I am using visual studio code for developing the beacon application. 

I want to beacon a dynamic variable value in the eddystone advertisement.. For this I defined variable as follows:

static uint8_t valuee[] = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x00} ;
Now, I am passing this variable "valuee" in the advertisement data using "BT_DATA_MANUFACTURER_DATA" macro.
Observation: I get the whole manufacturer data as "01020304050607080900" in the "manufacturer data field" in nrf connect for mobile app.
Expected output: "0x01" only. Followed by "0x02" only. then "0x03" only. 
The data in the array should be incremented and then advertised. How can I beacon dynamically?
Related