Bundle not working properly

This is not working as advertised:

		Bundle.read(\Assets/period_tracker.json")
		.then(function(contents) {
			console.log("AQUI " +contents);
		}, function(error) {
			console.log("Error!", error);
		});

	}
	testRead();```

The console log is getting hit (Aqui) but the content is not showing:

Never mind. I forgot to “Bundle” the file

writing to the same file using Storage is not working. It says success but no update is happening on the file.